Table of Contents

Class BitmapLoaderException

Namespace
Splat
Assembly
Splat.Drawing.dll

Represents errors that occur during bitmap loading operations.

public class BitmapLoaderException : Exception, ISerializable
Inheritance
BitmapLoaderException
Implements
Inherited Members
Extension Methods

Remarks

This exception is thrown when a bitmap cannot be loaded due to invalid data, unsupported formats, or other failures encountered during the loading process. Catch this exception to handle bitmap loading errors specifically, rather than general exceptions.

Constructors

BitmapLoaderException()

Initializes a new instance of the BitmapLoaderException class.

public BitmapLoaderException()

BitmapLoaderException(string)

Initializes a new instance of the BitmapLoaderException class.

public BitmapLoaderException(string message)

Parameters

message string

The message about the exception.

BitmapLoaderException(string, Exception)

Initializes a new instance of the BitmapLoaderException class.

public BitmapLoaderException(string message, Exception innerException)

Parameters

message string

The message about the exception.

innerException Exception

Any other internal exceptions we are mapping.