DebugEvaluationException.cs 446 B

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