namespace Jint.Runtime { /// /// Base class for exceptions thrown by Jint. /// public abstract class JintException : Exception { protected JintException() { } protected JintException(string? message) : base(message) { } protected JintException(string? message, Exception? innerException) : base(message, innerException) { } } }