15 lines
299 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |