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
messagestringThe message about the exception.
BitmapLoaderException(string, Exception)
Initializes a new instance of the BitmapLoaderException class.
public BitmapLoaderException(string message, Exception innerException)