C# Class Microsoft.Deployment.Compression.ArchiveException

Inheritance: IOException
Show file Open project: replisys/remin-core

Public Methods

Method Description
ArchiveException ( ) : System

Creates a new ArchiveException.

ArchiveException ( string message ) : System

Creates a new ArchiveException with a specified error message.

ArchiveException ( string message, Exception innerException ) : System

Creates a new ArchiveException with a specified error message and a reference to the inner exception that is the cause of this exception.

Protected Methods

Method Description
ArchiveException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the ArchiveException class with serialized data.

Method Details

ArchiveException() public method

Creates a new ArchiveException.
public ArchiveException ( ) : System
return System

ArchiveException() protected method

Initializes a new instance of the ArchiveException class with serialized data.
protected ArchiveException ( SerializationInfo info, StreamingContext context ) : System
info SerializationInfo The SerializationInfo that holds the serialized object data about the exception being thrown.
context StreamingContext The StreamingContext that contains contextual information about the source or destination.
return System

ArchiveException() public method

Creates a new ArchiveException with a specified error message.
public ArchiveException ( string message ) : System
message string The message that describes the error.
return System

ArchiveException() public method

Creates a new ArchiveException with a specified error message and a reference to the inner exception that is the cause of this exception.
public ArchiveException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException Exception The exception that is the cause of the current exception. If the /// innerException parameter is not a null reference (Nothing in Visual Basic), the current exception /// is raised in a catch block that handles the inner exception.
return System