RecursionDiscardedException.cs 317 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Jint.Runtime
  6. {
  7. public class RecursionDiscardedException : Exception
  8. {
  9. public RecursionDiscardedException()
  10. : base("The recursion is forbidden by script host.")
  11. {
  12. }
  13. }
  14. }