LexerException.cs 384 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace csharp_sccd_compiler
  3. {
  4. public class LexerException : CompilerException
  5. {
  6. public LexerException ()
  7. {
  8. }
  9. public LexerException(string message)
  10. : base(message)
  11. {
  12. }
  13. public LexerException(string message, Exception inner)
  14. : base(message, inner)
  15. {
  16. }
  17. }
  18. }