New to Telerik Document ProcessingStart a free 30-day trial

Thrown when an error occurs during worksheet printing operations, such as invalid page setup or margin configuration.

Definition

Constructors

Initializes a new instance of the PrintingException class with a default message.

C#
public PrintingException()

Initializes a new instance of the PrintingException class with a specified error message, a reference to the inner exception, and localization key.

C#
public PrintingException(string message, Exception innerException, string key)
Parameters:messagestring

The message.

innerExceptionException

The inner exception.

keystring

The key.

Initializes a new instance of the PrintingException class with a specified error message and a reference to the inner exception.

C#
public PrintingException(string message, Exception innerException)
Parameters:messagestring

The message.

innerExceptionException

The inner exception.

Initializes a new instance of the PrintingException class with a specified error message and localization key.

C#
public PrintingException(string message, string key)
Parameters:messagestring

The message.

keystring

The key.

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

C#
public PrintingException(string message)
Parameters:messagestring

The message.