2023-04-22 23:40:09 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace DCFApixels.DragonECS
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
2023-05-07 00:50:02 +08:00
|
|
|
|
public class EcsRelationException : EcsFrameworkException
|
2023-04-22 23:40:09 +08:00
|
|
|
|
{
|
|
|
|
|
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) { }
|
|
|
|
|
}
|
|
|
|
|
}
|