public function __construct($msg = null, $code = 0)
 {
     parent::__construct($msg, $code);
     $this->message = _M('Session finished by timeout.') . $msg;
     $this->log();
 }
 public function __construct($msg = null, $code = 0, $goTo = '')
 {
     parent::__construct($msg, $code);
     $this->goTo = $goTo;
     $this->message = _M($msg);
 }
 public function __construct($msg = null, $code = 0)
 {
     parent::__construct($msg, $code);
     $this->log();
 }
 public function __construct($msg = null, $code = 0)
 {
     parent::__construct($msg, $code);
     $this->message = _M($msg);
     $this->trace = mtracestack();
 }
 public function __construct($msg = null, $code = 0)
 {
     parent::__construct($msg, $code);
     $this->message = _M('Error in Session: ') . $msg;
     $this->log();
 }