mirror of
https://github.com/DCFApixels/DragonECS-Unity.git
synced 2025-09-17 17:34:34 +08:00
21 lines
455 B
C#
21 lines
455 B
C#
using System;
|
|
|
|
namespace DCFApixels.DragonECS.Unity.Internal
|
|
{
|
|
internal static class Throw
|
|
{
|
|
internal static void ArgumentOutOfRange()
|
|
{
|
|
throw new ArgumentOutOfRangeException();
|
|
}
|
|
internal static void Argument(string message)
|
|
{
|
|
throw new ArgumentException(message);
|
|
}
|
|
internal static void Exception()
|
|
{
|
|
throw new Exception();
|
|
}
|
|
}
|
|
}
|