C# Класс 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
Наследование: System.ApplicationException
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

SharpZipBaseException() публичный Метод

Initializes a new instance of the SharpZipBaseException class.
public SharpZipBaseException ( ) : System
Результат System

SharpZipBaseException() публичный Метод

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.
Результат System

SharpZipBaseException() публичный Метод

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
Результат System