mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 23:35:30 +00:00
25 lines
542 B
C#
25 lines
542 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace PckStudio.Core.IO.TGA
|
|
{
|
|
[Serializable]
|
|
internal class TGAException : Exception
|
|
{
|
|
public TGAException()
|
|
{
|
|
}
|
|
|
|
public TGAException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public TGAException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected TGAException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
} |