2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-19 19:05:31 +00:00

10 lines
178 B
C#

namespace ZoneCodeGenerator.Domain
{
class DataException : LoadingException
{
public DataException(string message) : base(message)
{
}
}
}