Files
bluflame/intromat/Intromat/Model/Compiler/Error/CompilerException.cs
2026-04-18 22:31:51 +02:00

15 lines
299 B
C#

using System;
namespace Intromat.Model.Compiler.Error
{
public class CompilerException : Exception
{
public CompilerException(string msg) : base(msg)
{
}
public CompilerException(string msg, Exception inner) : base(msg, inner)
{
}
}
}