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