mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-19 10:34:37 +08:00
16 lines
617 B
C#
16 lines
617 B
C#
![]() |
using System;
|
|||
|
|
|||
|
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) { }
|
|||
|
protected EcsRelationException(
|
|||
|
System.Runtime.Serialization.SerializationInfo info,
|
|||
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|||
|
}
|
|||
|
}
|