mysimulation/server/tso.files/FAR3/FAR3Exception.cs
Tony Bark 8fec258215 Added FSO.Files for use with the API server
Don't ask me. FreeSO is the prime example of dependency hell.
2024-05-01 04:38:12 -04:00

15 lines
298 B
C#
Executable file

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