Class VssRetryableWriterException
Exception indicating that the writer failed due to an error that would likely not occur if the entire backup, restore, or shadow copy creation process was restarted. The recommended way to handle this error is to wait ten minutes and then repeat the operation, up to three times.
Inheritance
Inherited Members
Namespace: Alphaleonis.Win32.Vss
Assembly: AlphaVSS.Common.dll
Syntax
[Serializable]
public class VssRetryableWriterException : VssWriterException, ISerializable, _Exception
Constructors
| Improve this Doc View SourceVssRetryableWriterException()
Initializes a new instance of the VssRetryableWriterException class.
Declaration
public VssRetryableWriterException()
VssRetryableWriterException(SerializationInfo, StreamingContext)
Initializes a new instance of the VssRetryableWriterException class.
Declaration
protected VssRetryableWriterException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | The SerializationInfo that holds the serialized object data about the exception being thrown. |
StreamingContext | context | The StreamingContext that contains contextual information about the source or destination. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | The |
SerializationException | The class name is null or HResult is zero (0). |
VssRetryableWriterException(String)
Initializes a new instance of the VssRetryableWriterException class.
Declaration
public VssRetryableWriterException(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error |
VssRetryableWriterException(String, Exception)
Initializes a new instance of the VssRetryableWriterException class.
Declaration
public VssRetryableWriterException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error |
Exception | innerException | The exception that is the cause of the current exception. |