mirror of
https://github.com/DCFApixels/DragonECS-Graphs.git
synced 2025-09-17 11:04:34 +08:00
74 lines
2.3 KiB
C#
74 lines
2.3 KiB
C#
#if DISABLE_DEBUG
|
|
#undef DEBUG
|
|
#endif
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace DCFApixels.DragonECS.Graphs.Internal
|
|
{
|
|
internal static class Throw
|
|
{
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void RelationAlreadyExists()
|
|
{
|
|
throw new EcsRelationException("This relation already exists.");
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void UndefinedRelationException()
|
|
{
|
|
throw new EcsRelationException();
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void ArgumentNull(string paramName)
|
|
{
|
|
throw new ArgumentNullException(paramName);
|
|
}
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void ArgumentOutOfRange()
|
|
{
|
|
throw new ArgumentOutOfRangeException($"index is less than 0 or is equal to or greater than Count.");
|
|
}
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void UndefinedException()
|
|
{
|
|
throw new Exception();
|
|
}
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void Exception(string message)
|
|
{
|
|
throw new Exception(message);
|
|
}
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void ArgumentException(string message)
|
|
{
|
|
throw new ArgumentException(message);
|
|
}
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void KeyNotFound()
|
|
{
|
|
throw new KeyNotFoundException();
|
|
}
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
internal static void Quiery_ArgumentDifferentWorldsException()
|
|
{
|
|
throw new ArgumentException("The groups belong to different worlds.");
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace DCFApixels.DragonECS
|
|
{
|
|
[Serializable]
|
|
public class EcsRelationException : Exception
|
|
{
|
|
public EcsRelationException() { }
|
|
public EcsRelationException(string message) : base(EcsConsts.EXCEPTION_MESSAGE_PREFIX + message) { }
|
|
public EcsRelationException(string message, Exception inner) : base(EcsConsts.EXCEPTION_MESSAGE_PREFIX + message, inner) { }
|
|
}
|
|
}
|