0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-08 18:10:08 +00:00
BookStackApp_BookStack/app/Exceptions/NotFoundException.php
Dan Brown 8e6248f57f Added restriction tests and fixed any bugs in the process
Also updated many styles within areas affected by the new permission and roles system.
2016-03-05 18:09:21 +00:00

14 lines
No EOL
293 B
PHP

<?php namespace BookStack\Exceptions;
class NotFoundException extends PrettyException {
/**
* NotFoundException constructor.
* @param string $message
*/
public function __construct($message = 'Item not found')
{
parent::__construct($message, 404);
}
}