JintInteropException.cs 235 B

123456789101112
  1. using System;
  2. namespace Jint.Runtime.Interop
  3. {
  4. public class JintInteropException: Exception
  5. {
  6. public JintInteropException(Exception innerException)
  7. : base("", innerException)
  8. {
  9. }
  10. }
  11. }