aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/Exception.php
blob: c8c85912d49b3336a86e797e5da0860644a9c0bb (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 {
	public const ERROR = 0;
	public const WARNING = 10;
	public 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);
	}
}