for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Exception;
/**
* User Exception.
*/
class UserException extends BaseException
{
public function __construct($message = '', $code = null, \Exception $previous = null)
parent::__construct($message, $code, $previous);
}