.log" * * @package exceptionHandling */ class mb_exception extends mb_log { /** * @param string $message message that is being logged */ public function __construct ($message) { return $this->mb_log("ERROR: " . $message, $this->level); } /** * @var string a description of the log level */ private $level = "error"; } ?>