 | PdfiumException(UInt32, String, Exception) Constructor |
Initializes a new instance of the PdfiumException class.
Namespace: Patagames.Pdf.Net.ExceptionsAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic PdfiumException(
uint errorCode,
string message,
Exception innerException
)
Public Sub New (
errorCode As UInteger,
message As String,
innerException As Exception
)
public:
PdfiumException(
unsigned int errorCode,
String^ message,
Exception^ innerException
)
new :
errorCode : uint32 *
message : string *
innerException : Exception -> PdfiumException
public PdfiumException(
UInt32 errorCode,
String message,
Exception innerException
)
Patagames.Pdf.Net.Exceptions.PdfiumException = function(errorCode, message, innerException);
Parameters
- errorCode UInt32
- Error code
- message String
- The error message that explains the reason for the exception.
- innerException Exception
- The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
See Also