Class IronPdfInputException
Inheritance
Namespace: IronSoftware.Exceptions
Assembly: IronPdf.dll
Syntax
public class IronPdfInputException : Exception
The IronPdfInputException class represents IronPDF error condition in the error handling area.
Part of the IronSoftware.Exceptions namespace and inheriting from Exception, it surfaces when the corresponding call cannot complete, typically from bad input, an unsupported configuration, or an error in the native library.
Inspect the Message and InnerException properties to diagnose what went wrong.
For common platform-specific causes, consult the IronPDF troubleshooting guides.
Constructors
IronPdfInputException()
Declaration
public IronPdfInputException()
IronPdfInputException(String)
Declaration
public IronPdfInputException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message |
IronPdfInputException(String, Exception)
Declaration
public IronPdfInputException(string message, Exception innerException)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | |
| System.Exception | innerException |