Nerd_STF/Nerd_STF/Exceptions/MathException.cs
2023-03-09 16:44:23 -05:00

11 lines
421 B
C#

namespace Nerd_STF.Exceptions;
[Serializable]
public class MathException : Nerd_STFException
{
public MathException() : base("A calculation error occured.") { }
public MathException(string message) : base(message) { }
public MathException(string message, Exception inner) : base(message, inner) { }
protected MathException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}