blob: c306a14ca4cd9fc090b89420d8803b47b11b71bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
declare(strict_types=1);
class Minz_Exception extends Exception {
const ERROR = 0;
const WARNING = 10;
const NOTICE = 20;
public function __construct(string $message, int $code = self::ERROR) {
if ($code != Minz_Exception::ERROR
&& $code != Minz_Exception::WARNING
&& $code != Minz_Exception::NOTICE) {
$code = Minz_Exception::ERROR;
}
parent::__construct ($message, $code);
}
}
|