StatementsCountOverflowException.cs 261 B

1234567891011
  1. using System;
  2. namespace Jint.Runtime
  3. {
  4. public class StatementsCountOverflowException : Exception
  5. {
  6. public StatementsCountOverflowException() : base("The maximum number of statements executed have been reached.")
  7. {
  8. }
  9. }
  10. }