Class ReportException
Represents an exception class that is used for report exceptions.
public sealed class ReportException : Exception, ISerializable
- Inheritance
-
ReportException
- Implements
- Inherited Members
Examples
try {
ImageData image = new ImageJpegData("Example.jpg");
...
}
catch (ReportException ex) {
Console.WriteLine(ex.Message);
}