envlang-csharp/Exceptions.cs

17 lines
512 B
C#

using System;
public abstract class UserErrorException : Exception {
public UserErrorException(string e) : base(e) {}
}
public class ParserErrorException : UserErrorException {
public ParserErrorException(string e) : base("Parser error: " + e) {}
}
public class LexerErrorException : UserErrorException {
public LexerErrorException(string e) : base("Lexer error: " + e) {}
}
public class TestFailedException : UserErrorException {
public TestFailedException(string e) : base("Test failed: " + e) {}
}