using System; namespace csharp_sccd_compiler { public class CompilerException : Exception { public CompilerException () { } public CompilerException(string message) : base(message) { } public CompilerException(string message, Exception inner) : base(message, inner) { } } }