/**
  * construct
  * 
  * @param string $_message
  * @param integer $_code
  * @return void
  */
 public function __construct($_message = 'Could not authenticate to sipgate.', $_code = 952)
 {
     // _('Could not authenticate to sipgate.')
     parent::__construct($_message, $_code);
 }
 /**
  * construct
  * 
  * @param string $_message
  * @param integer $_code
  * @return void
  */
 public function __construct($_message = 'Could not connect to sipgate.', $_code = 951)
 {
     // _('Could not connect to sipgate.')
     parent::__construct($_message, $_code);
 }
 /**
  * construct
  * 
  * @param string $_message
  * @param integer $_code
  * @return void
  */
 public function __construct($_message = 'Could not resolve account settings.', $_code = 953)
 {
     // _('Could not resolve account settings.')
     parent::__construct($_message, $_code);
 }
 /**
  * construct
  * 
  * @param string $_message
  * @param integer $_code
  * @return void
  */
 public function __construct($_message = 'The sipgate configuration is missing.', $_code = 954)
 {
     // _('The configuration is missing.')
     parent::__construct($_message, $_code);
 }
 /**
  * construct
  * 
  * @param string $_message
  * @param integer $_code
  * @return void
  */
 public function __construct($_message = 'General Backend Exception.', $_code = 950)
 {
     // _('General Backend Exception.')
     parent::__construct($_message, $_code);
 }