mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-19 02:45:41 +00:00
12 lines
185 B
C#
12 lines
185 B
C#
using System;
|
|
|
|
namespace ZoneCodeGenerator
|
|
{
|
|
class LoadingException : Exception
|
|
{
|
|
public LoadingException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|