1234567891011 |
- using System;
- namespace NTERA.Engine.Runtime
- {
- public class EraRuntimeException : Exception
- {
- public EraRuntimeException(string message) : base(message) { }
- public EraRuntimeException(string message, Exception innerException) : base(message, innerException) { }
- }
- }
|