/**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct(self::MESSAGE, self::CODE);
 }
 /**
  * Constructor
  */
 public function __construct($code, $message)
 {
     parent::__construct(self::MESSAGE, self::CODE);
     $this->_remoteCode = $code;
     $this->_remoteMessage = $message;
 }