JintException.cs 447 B

1234567891011121314151617181920
  1. namespace Jint.Runtime
  2. {
  3. /// <summary>
  4. /// Base class for exceptions thrown by Jint.
  5. /// </summary>
  6. public abstract class JintException : Exception
  7. {
  8. protected JintException()
  9. {
  10. }
  11. protected JintException(string? message) : base(message)
  12. {
  13. }
  14. protected JintException(string? message, Exception? innerException) : base(message, innerException)
  15. {
  16. }
  17. }
  18. }