DebugEvaluationException.cs 482 B

12345678910111213141516171819
  1. #nullable enable
  2. using System;
  3. namespace Jint.Runtime.Debugger;
  4. /// <summary>
  5. /// Thrown when an evaluation executed through the DebugHandler results in any type of error - parsing or runtime.
  6. /// </summary>
  7. public sealed class DebugEvaluationException : JintException
  8. {
  9. public DebugEvaluationException(string message) : base(message)
  10. {
  11. }
  12. public DebugEvaluationException(string message, Exception innerException) : base(message, innerException)
  13. {
  14. }
  15. }