mirror of
https://github.com/DCFApixels/DragonECS-Graphs.git
synced 2025-09-18 03:34:35 +08:00
15 lines
569 B
C#
15 lines
569 B
C#
![]() |
using System;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
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(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
|||
|
}
|
|||
|
}
|