Files
PCK-Studio/PckStudio.Core/IO/TGA/TGAException.cs

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)
{
}
}
}