ExecutionCanceledException.cs 215 B

123456789
  1. namespace Jint.Runtime
  2. {
  3. public sealed class ExecutionCanceledException : JintException
  4. {
  5. public ExecutionCanceledException() : base("The script execution was canceled.")
  6. {
  7. }
  8. }
  9. }