C# Class AForge.Imaging.InvalidImagePropertiesException

Invalid image properties exception.

The invalid image properties exception is thrown in the case when user provides an image with certain properties, which are treated as invalid by particular image processing routine. Another case when this exception is thrown is the case when user tries to access some properties of an image (or of a recently processed image by some routine), which are not valid for that image.

Inheritance: System.ArgumentException
Datei anzeigen Open project: holisticware-admin/MonoVersal.AForgeNET

Public Methods

Method Description
InvalidImagePropertiesException ( ) : System

Initializes a new instance of the InvalidImagePropertiesException class.

InvalidImagePropertiesException ( string message ) : System

Initializes a new instance of the InvalidImagePropertiesException class.

InvalidImagePropertiesException ( string message, string paramName ) : System

Initializes a new instance of the InvalidImagePropertiesException class.

Method Details

InvalidImagePropertiesException() public method

Initializes a new instance of the InvalidImagePropertiesException class.
public InvalidImagePropertiesException ( ) : System
return System

InvalidImagePropertiesException() public method

Initializes a new instance of the InvalidImagePropertiesException class.
public InvalidImagePropertiesException ( string message ) : System
message string Message providing some additional information.
return System

InvalidImagePropertiesException() public method

Initializes a new instance of the InvalidImagePropertiesException class.
public InvalidImagePropertiesException ( string message, string paramName ) : System
message string Message providing some additional information.
paramName string Name of the invalid parameter.
return System