aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/Exception.php
blob: f2d3b876be6ad67916739da932bf86ed04f81e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
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);
	}
}