C# Class ICSharpCode.SharpZipLib.SharpZipBaseException

SharpZipBaseException is the base exception class for the SharpZipLibrary. All library exceptions are derived from this.
NOTE: Not all exceptions thrown will be derived from this class. A variety of other exceptions are possible for example
Inheritance: System.ApplicationException
Show file Open project: icsharpcode/SharpZipLib

Public Methods

Method Description
SharpZipBaseException ( ) : System

Initializes a new instance of the SharpZipBaseException class.

SharpZipBaseException ( string message ) : System

Initializes a new instance of the SharpZipBaseException class with a specified error message.

SharpZipBaseException ( string message, Exception innerException ) : System

Initializes a new instance of the SharpZipBaseException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Method Details

SharpZipBaseException() public method

Initializes a new instance of the SharpZipBaseException class.
public SharpZipBaseException ( ) : System
return System

SharpZipBaseException() public method

Initializes a new instance of the SharpZipBaseException class with a specified error message.
public SharpZipBaseException ( string message ) : System
message string A message describing the exception.
return System

SharpZipBaseException() public method

Initializes a new instance of the SharpZipBaseException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public SharpZipBaseException ( string message, Exception innerException ) : System
message string A message describing the exception.
innerException System.Exception The inner exception
return System