PorygonSharp/PorygonSharp/EvaluationException.cs

12 lines
202 B
C#

using System;
namespace PorygonSharp
{
public class EvaluationException : Exception
{
public EvaluationException(string message) : base(message)
{
}
}
}