aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/Exception.php
blob: 283b28f4e66e5d09d9d3a221558e24abc4400fa5 (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, ?Throwable $previous = null) {
		if ($code !== Minz_Exception::ERROR
			&& $code !== Minz_Exception::WARNING
			&& $code !== Minz_Exception::NOTICE) {
			$code = Minz_Exception::ERROR;
		}

		parent::__construct($message, $code, $previous);
	}
}