mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
714c7bbd3a
Signed-off-by: Abijeet <abijeetpatro@gmail.com>
15 lines
294 B
PHP
15 lines
294 B
PHP
<?php namespace BookStack\Exceptions;
|
|
|
|
class BadRequestException extends PrettyException
|
|
{
|
|
|
|
/**
|
|
* BadRequestException constructor.
|
|
* @param string $message
|
|
*/
|
|
public function __construct($message = 'Bad request')
|
|
{
|
|
parent::__construct($message, 400);
|
|
}
|
|
}
|