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) { } } }