|
1
|
<?php |
|
2
|
|
|
3
|
declare(strict_types=1); |
|
4
|
|
|
5
|
namespace AC\Exception; |
|
6
|
|
|
7
|
use RuntimeException; |
|
8
|
|
|
9
|
class RequestException extends RuntimeException |
|
10
|
{ |
|
11
|
public static function parameters_invalid(): self |
|
12
|
{ |
|
13
|
return new self('Invalid request parameters.'); |
|
14
|
} |
|
15
|
|
|
16
|
} |
|
17
|
|