mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-11-14 10:05:55 +08:00
16 lines
684 B
C#
16 lines
684 B
C#
using System;
|
|
|
|
namespace DCFApixels.DragonECS
|
|
{
|
|
[Serializable]
|
|
public class EcsRunnerImplementationException : EcsFrameworkException
|
|
{
|
|
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) { }
|
|
}
|
|
}
|