mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 14:51:21 +00:00
16 lines
298 B
C#
16 lines
298 B
C#
|
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|