CLI tool for running Playbooks
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
350 B

1 year ago
  1. using System;
  2. namespace TrustedUninstaller.Shared.Exceptions
  3. {
  4. public class TaskInProgressException : Exception
  5. {
  6. public TaskInProgressException() {}
  7. public TaskInProgressException(string message) : base(message) {}
  8. public TaskInProgressException(string message, Exception inner) : base(message, inner) {}
  9. }
  10. }