public ConstraintCouldNotBeSatisfiedProvisioningException(string constraintExpression, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorConstraintCouldNotBeSatisfied(constraintExpression), innerException)
 {
     this.constraintExpression = constraintExpression;
 }
 public ServerNotFoundException(string guid) : base(MigrationWorkflowServiceStrings.ErrorServerNotFound(guid))
 {
     this.guid = guid;
 }
 public DatabaseNotFoundPermanentException(string guid) : base(MigrationWorkflowServiceStrings.ErrorDatabaseNotFound(guid))
 {
     this.guid = guid;
 }
Example #4
0
 public OverlappingBandDefinitionException(string newBand, string existingBand, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorOverlappingBandDefinition(newBand, existingBand), innerException)
 {
     this.newBand      = newBand;
     this.existingBand = existingBand;
 }
 public EntityIsNonMovableException(string orgId, string userId, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorEntityNotMovable(orgId, userId), innerException)
 {
     this.orgId  = orgId;
     this.userId = userId;
 }
 public LoadBalanceAnchorMailboxNotFoundException(string capability, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorMissingAnchorMailbox(capability), innerException)
 {
     this.capability = capability;
 }
Example #7
0
 public ObjectCannotBeMovedException(string objectType, string objectIdentity, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorObjectCannotBeMoved(objectType, objectIdentity), innerException)
 {
     this.objectType     = objectType;
     this.objectIdentity = objectIdentity;
 }
 public ContainerCannotReceiveLoadException(string containerGuid, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorContainerCannotTakeLoad(containerGuid), innerException)
 {
     this.containerGuid = containerGuid;
 }
 public LocDescriptionAttribute(MigrationWorkflowServiceStrings.IDs ids) : base(MigrationWorkflowServiceStrings.GetLocalizedString(ids))
 {
 }
Example #10
0
 public DatabaseNotLocalException(string databaseName, string edbPath, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorDatabaseNotLocal(databaseName, edbPath), innerException)
 {
     this.databaseName = databaseName;
     this.edbPath      = edbPath;
 }
 public MultipleRecipientFoundException(string userId, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorMultipleRecipientFound(userId), innerException)
 {
     this.userId = userId;
 }
Example #12
0
 public NotEnoughDatabaseCapacityPermanentException(string databaseGuid, string capacityType, long requestedCapacityUnits, long availableCapacityUnits, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorNotEnoughDatabaseCapacity(databaseGuid, capacityType, requestedCapacityUnits, availableCapacityUnits), innerException)
 {
     this.databaseGuid           = databaseGuid;
     this.capacityType           = capacityType;
     this.requestedCapacityUnits = requestedCapacityUnits;
     this.availableCapacityUnits = availableCapacityUnits;
 }
Example #13
0
 public InvalidOrganizationException(string orgName, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorInvalidOrganization(orgName), innerException)
 {
     this.orgName = orgName;
 }
 public RecipientNotFoundException(string userId) : base(MigrationWorkflowServiceStrings.ErrorRecipientNotFound(userId))
 {
     this.userId = userId;
 }
Example #15
0
 public CannotRetrieveCapacityDataException(string objectIdentity, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorCannotRetrieveCapacityData(objectIdentity), innerException)
 {
     this.objectIdentity = objectIdentity;
 }
Example #16
0
 public InvalidOrganizationIdentityException(string orgName, string externalId, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorInvalidExternalOrganizationId(orgName, externalId), innerException)
 {
     this.orgName    = orgName;
     this.externalId = externalId;
 }
Example #17
0
 public DagNotFoundException(string guid, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorDagNotFound(guid), innerException)
 {
     this.guid = guid;
 }
 public MissingDatabaseActivationPreferenceException(string databaseName, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorMissingDatabaseActivationPreference(databaseName), innerException)
 {
     this.databaseName = databaseName;
 }
Example #19
0
 public BandDefinitionNotFoundException(string band, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorBandDefinitionNotFound(band), innerException)
 {
     this.band = band;
 }
 public DatabaseFailedOverException(string guid, Exception innerException) : base(MigrationWorkflowServiceStrings.ErrorDatabaseFailedOver(guid), innerException)
 {
     this.guid = guid;
 }