for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lyal\Checkr\Exceptions;
class UnhandledCheckrWebhook extends \Exception
{
public function __construct($event)
$message = 'An unexpected Checkr webhook was sent: '.$event;
parent::__construct($message);
}