BookStack\Exceptions\NotFoundException::__construct PHP Method

__construct() public method

NotFoundException constructor.
public __construct ( string $message = 'Item not found' )
$message string
    public function __construct($message = 'Item not found')
    {
        parent::__construct($message, 404);
    }
NotFoundException