Rizin
unix-like reverse engineering framework and cli tools
DotZLib.ZLibException Class Reference

The exception that is thrown when an error occurs on the zlib dll More...

Inheritance diagram for DotZLib.ZLibException:

Public Member Functions

 ZLibException (int errorCode, string msg)
 Initializes a new instance of the ZLibException class with a specified error message and error code More...
 
 ZLibException (int errorCode)
 Initializes a new instance of the ZLibException class with a specified error code More...
 

Detailed Description

The exception that is thrown when an error occurs on the zlib dll

Definition at line 86 of file DotZLib.cs.

Constructor & Destructor Documentation

◆ ZLibException() [1/2]

DotZLib.ZLibException.ZLibException ( int  errorCode,
string  msg 
)
inline

Initializes a new instance of the ZLibException class with a specified error message and error code

Parameters
errorCodeThe zlib error code that caused the exception
msgA message that (hopefully) describes the error

Definition at line 94 of file DotZLib.cs.

94  : base(String.Format("ZLib error {0} {1}", errorCode, msg))
95  {
96  }
static struct sockaddr static addrlen static backlog const void msg
Definition: sfsocketcall.h:119

◆ ZLibException() [2/2]

DotZLib.ZLibException.ZLibException ( int  errorCode)
inline

Initializes a new instance of the ZLibException class with a specified error code

Parameters
errorCodeThe zlib error code that caused the exception

Definition at line 103 of file DotZLib.cs.

103  : base(String.Format("ZLib error {0}", errorCode))
104  {
105  }

The documentation for this class was generated from the following file: