A free, self-hostable aggregator…
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
372 B

<?php
class Minz_Exception extends Exception {
const ERROR = 0;
const WARNING = 10;
const NOTICE = 20;
public function __construct ($message, $code = self::ERROR) {
if ($code != Minz_Exception::ERROR
&& $code != Minz_Exception::WARNING
&& $code != Minz_Exception::NOTICE) {
$code = Minz_Exception::ERROR;
}
parent::__construct ($message, $code);
}
}