Table of Contents

Constructor PdfDocumentException

Namespace
LMKit.Exceptions
Assembly
LM-Kit.NET.dll

PdfDocumentException(string)

Initializes a new instance of the PdfDocumentException class with a specified error message.

public PdfDocumentException(string message)

Parameters

message string

The error message that explains the reason for the exception.

PdfDocumentException(string, PdfErrorCode)

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

public PdfDocumentException(string message, PdfErrorCode errorCode)

Parameters

message string

The error message that explains the reason for the exception.

errorCode PdfErrorCode

The specific error code identifying the failure reason.

PdfDocumentException(string, Exception)

Initializes a new instance of the PdfDocumentException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public PdfDocumentException(string message, Exception inner)

Parameters

message string

The error message that explains the reason for the exception.

inner Exception

The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

Share