RangeErrorException.cs 297 B

123456789101112
  1. namespace Jint.Runtime
  2. {
  3. /// <summary>
  4. /// Workaround for situation where engine is not easily accessible.
  5. /// </summary>
  6. internal sealed class RangeErrorException : JintException
  7. {
  8. public RangeErrorException(string message) : base(message)
  9. {
  10. }
  11. }
  12. }