for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @file NullUserException.php
* This file is a class that should be used to communicate a null user
* error to a user.
* @package Lib\EvangelistStatus
* @author andrew <[email protected]>
* @license MIT => https://opensource.org/licenses/MIT
*/
namespace Lib\Exceptions;
use Exception;
* @category Class
class UserNotFoundException extends Exception
{
protected $message;
* @param string $message
public function __construct($message)
$this->message = $message;
// make sure everything is properly assigned
parent::__construct($message);
}