namespace Jint.Runtime.Debugger; /// /// Thrown when an evaluation executed through the DebugHandler results in any type of error - parsing or runtime. /// public sealed class DebugEvaluationException : JintException { public DebugEvaluationException(string message) : base(message) { } public DebugEvaluationException(string message, Exception innerException) : base(message, innerException) { } }