. */ /* */ /*************************************************************************************/ namespace Thelia\Exception; class ModuleException extends \RuntimeException { const UNKNOWN_EXCEPTION = 0; const CODE_NOT_FOUND = 404; public function __construct($message, $code = null, $previous = null) { if ($code === null) { $code = self::UNKNOWN_EXCEPTION; } parent::__construct($message, $code, $previous); } }