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