. */ /* */ /*************************************************************************************/ namespace Thelia\Exception; use Thelia\Log\Tlog; class UrlRewritingException extends \Exception { const UNKNOWN_EXCEPTION = 0; const URL_NOT_FOUND = 404; const RESOLVER_NULL_SEARCH = 800; public function __construct($message, $code = null, $previous = null) { if($code === null) { $code = self::UNKNOWN_EXCEPTION; } parent::__construct($message, $code, $previous); } }