ParserException.cs 295 B

12345678910111213141516
  1. using System;
  2. namespace Jint.Parser
  3. {
  4. public class ParserError : Exception
  5. {
  6. public int Column;
  7. public string Description;
  8. public int Index;
  9. public int LineNumber;
  10. public ParserError(string message) : base(message)
  11. {
  12. }
  13. }
  14. }