Ejemplo n.º 1
0
 public SyncException(String message, SyncStage stage, string providerName, SyncExceptionType type = SyncExceptionType.Unknown, int errorCode = -1) : base(message)
 {
     this.SyncStage    = stage;
     this.ProviderName = providerName;
     this.ErrorCode    = errorCode;
     this.Type         = type;
 }
Ejemplo n.º 2
0
 public SyncException(string message, SyncStage stage, Exception exception, SyncExceptionType type = SyncExceptionType.Unknown) : base(message, exception)
 {
     this.ExceptionType = type;
     this.SyncStage     = stage;
 }
Ejemplo n.º 3
0
 public SyncException(string message, SyncExceptionType type = SyncExceptionType.Unknown) : base(message)
 {
     this.ExceptionType = type;
     this.SyncStage     = SyncStage.None;
 }