ZipEntryNotFoundException Constructor (String, Exception)
|
Constructs an exception with a descriptive message and a reference to the instance of the
Exception
that is the root cause of the this exception.
Namespace:
Spire.Pdf.General.Paper.Uof
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public ZipEntryNotFoundException(
string message,
Exception innerException
)
Public Sub New (
message As String,
innerException As Exception
)
public:
ZipEntryNotFoundException(
String^ message,
Exception^ innerException
)
new :
message : string *
innerException : Exception -> ZipEntryNotFoundException
Parameters
-
message
-
Type:
System
String
The error message that explains the reason for the exception.
-
innerException
-
Type:
System
Exception
An instance of
Exception
that is the cause of the current Exception. If
innerException
is non-null, then the current Exception is raised in a catch block handling
.
See Also