Commit Description:
Merge in m5-events! ?
Commit Description:
Merge in m5-events! ?
References:
Show/Diff file:
Action:
encompass-cs/encompass-cs/Exceptions/EngineCycleException.cs
13 lines | 260 B | text/x-csharp | CSharpLexer
using System;
namespace Encompass.Exceptions
{
public class EngineCycleException : Exception
{
public EngineCycleException(
string format,
params object[] args
) : base(string.Format(format, args)) { }
}
}