Archived
forked from RDTKEditor/RDTKEditor
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
namespace RhythmBase.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Represents errors that occur during sprite operations.
|
|
/// </summary>
|
|
public class SpriteException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SpriteException"/> class.
|
|
/// </summary>
|
|
public SpriteException()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SpriteException"/> class with a specified error message.
|
|
/// </summary>
|
|
/// <param name="message">The message that describes the error.</param>
|
|
public SpriteException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SpriteException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
|
|
/// </summary>
|
|
/// <param name="message">The message that describes the error.</param>
|
|
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>
|
|
public SpriteException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|