for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Andegna\Exception;
use Exception;
class InvalidDateException extends Exception
{
public function __construct($message = 'Invalid date was given')
parent::__construct($message);
}