public FailedCommunicationException(string reason, Exception innerException) : base(ThirdPartyReplication.FailedCommunication(reason), innerException)
 {
     this.reason = reason;
 }
Example #2
0
 public LocDescriptionAttribute(ThirdPartyReplication.IDs ids) : base(ThirdPartyReplication.GetLocalizedString(ids))
 {
 }
Example #3
0
 public NotThePamException(string apiName, Exception innerException) : base(ThirdPartyReplication.OnlyPAMError(apiName), innerException)
 {
     this.apiName = apiName;
 }
Example #4
0
 public ImmediateDismountMailboxDatabaseException(Guid dbId, string reason, Exception innerException) : base(ThirdPartyReplication.ImmediateDismountMailboxDatabaseFailed(dbId, reason), innerException)
 {
     this.dbId   = dbId;
     this.reason = reason;
 }
Example #5
0
 public NoCopyOnServerException(Guid dbId, string dbName, string serverName, Exception innerException) : base(ThirdPartyReplication.NoCopyOnServer(dbId, dbName, serverName), innerException)
 {
     this.dbId       = dbId;
     this.dbName     = dbName;
     this.serverName = serverName;
 }
 public ThirdPartyReplicationException(string error, Exception innerException) : base(ThirdPartyReplication.TPRBaseError(error), innerException)
 {
     this.error = error;
 }
Example #7
0
 public NoSuchDatabaseException(Guid dbId, Exception innerException) : base(ThirdPartyReplication.NoSuchDatabase(dbId), innerException)
 {
     this.dbId = dbId;
 }
Example #8
0
 public NoSuchDatabaseException(Guid dbId) : base(ThirdPartyReplication.NoSuchDatabase(dbId))
 {
     this.dbId = dbId;
 }
 public ChangeActiveServerException(Guid dbId, string newServer, string reason, Exception innerException) : base(ThirdPartyReplication.ChangeActiveServerFailed(dbId, newServer, reason), innerException)
 {
     this.dbId      = dbId;
     this.newServer = newServer;
     this.reason    = reason;
 }
Example #10
0
 public GetPrimaryActiveManagerException(string reason, Exception innerException) : base(ThirdPartyReplication.GetPamError(reason), innerException)
 {
     this.reason = reason;
 }