TypeErrorException.cs 308 B

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