Esempio n. 1
0
 internal CeBackupClientException(FaultException <ServiceFault> error)
     : base(ErrorUtil.GetDescription((CLIENT_ERROR)error.Detail.ErrorCode))
 {
     _errorCode = (CLIENT_ERROR)error.Detail.ErrorCode;
 }
Esempio n. 2
0
 internal CeBackupClientException(CLIENT_ERROR errorCode)
     : base(ErrorUtil.GetDescription(errorCode))
 {
     _errorCode = errorCode;
 }
Esempio n. 3
0
 internal CeBackupClientException(TimeoutException error)
     : base(ErrorUtil.GetDescription(CLIENT_ERROR.ERROR_SERVICETIMEOUT), error)
 {
     _errorCode = CLIENT_ERROR.ERROR_SERVICETIMEOUT;
 }
Esempio n. 4
0
 internal CeBackupClientException(Exception error)
     : base(ErrorUtil.GetDescription(CLIENT_ERROR.ERROR_CHANNELERROR), error)
 {
     _errorCode = CLIENT_ERROR.ERROR_CHANNELERROR;
 }
Esempio n. 5
0
 internal CeBackupClientException(CommunicationException error)
     : base(ErrorUtil.GetDescription(CLIENT_ERROR.ERROR_COMMUNICATIONERROR), error)
 {
     _errorCode = CLIENT_ERROR.ERROR_COMMUNICATIONERROR;
 }