mysimulation/server/tso.files/FAR3/FAR3Exception.cs

16 lines
298 B
C#
Raw Permalink Normal View History

using System;
namespace FSO.Files.FAR3
{
/// <summary>
/// Represents an exception thrown by a FAR3Archive instance.
/// </summary>
public class FAR3Exception : Exception
{
public FAR3Exception(string Message)
: base(Message)
{
}
}
}