for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Textlocal\Exceptions;
use Exception;
class InputNotValid extends Exception
{
public static function unacceptable($message, $code)
return new static("Input error: '{$message} [{$code}]");
}