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
파일 보기 프로젝트 열기: icsharpcode/SharpZipLib

공개 메소드들

메소드 설명
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