mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
10 lines
183 B
C#
10 lines
183 B
C#
namespace ZoneCodeGenerator.Parsing
|
|
{
|
|
class ParserException : LoadingException
|
|
{
|
|
public ParserException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|