mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 06:18:05 -05:00
10 lines
178 B
C#
10 lines
178 B
C#
namespace ZoneCodeGenerator.Domain
|
|
{
|
|
class DataException : LoadingException
|
|
{
|
|
public DataException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|