StatementsCountOverflowException.cs 226 B

12345678
  1. namespace Jint.Runtime;
  2. public sealed class StatementsCountOverflowException : JintException
  3. {
  4. public StatementsCountOverflowException() : base("The maximum number of statements executed have been reached.")
  5. {
  6. }
  7. }