2023-03-30 01:57:10 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DCFApixels.DragonECS
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable]
|
2023-05-07 00:50:02 +08:00
|
|
|
|
public class EcsRunnerImplementationException : EcsFrameworkException
|
2023-03-30 01:57:10 +08:00
|
|
|
|
{
|
|
|
|
|
|
public EcsRunnerImplementationException() { }
|
|
|
|
|
|
public EcsRunnerImplementationException(string message) : base(EcsConsts.EXCEPTION_MESSAGE_PREFIX + message) { }
|
|
|
|
|
|
public EcsRunnerImplementationException(string message, Exception inner) : base(EcsConsts.EXCEPTION_MESSAGE_PREFIX + message, inner) { }
|
|
|
|
|
|
protected EcsRunnerImplementationException(
|
|
|
|
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
|
|
|
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|