ExecutionCanceledException.cs 188 B

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