bookstack/app/Exceptions/NotFoundException.php

15 lines
263 B
PHP
Raw Permalink Normal View History

2021-06-26 23:23:15 +08:00
<?php
namespace BookStack\Exceptions;
class NotFoundException extends PrettyException
{
/**
* NotFoundException constructor.
*/
public function __construct($message = 'Item not found')
{
parent::__construct($message, 404);
}
}