mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 09:54:35 +08:00
16 lines
629 B
C#
16 lines
629 B
C#
using System;
|
|
|
|
namespace DCFApixels.DragonECS
|
|
{
|
|
[Serializable]
|
|
public class EcsRelationException : EcsFrameworkException
|
|
{
|
|
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) { }
|
|
}
|
|
}
|