mirror of https://github.com/movim/movim
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.
26 lines
492 B
26 lines
492 B
<?php
|
|
|
|
/**
|
|
* \brief Movim's custom exception class.
|
|
*
|
|
* Merely adds a line break to the messages so far. Is expected to become more
|
|
* useful in the future.
|
|
*/
|
|
class MovimException extends Exception
|
|
{
|
|
/**
|
|
* Forces to add a message.
|
|
*/
|
|
public function __construct($message, $code = 0) {
|
|
parent::__construct('Error: ' . $message, $code);
|
|
}
|
|
|
|
/**
|
|
* Output proper html error reports.
|
|
*/
|
|
function __toString() {
|
|
return $this->code . ' - ' . $this->message . '<br />';
|
|
}
|
|
}
|
|
|
|
?>
|