DebugEvaluationException.cs 467 B

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