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

using System;
namespace TrustedUninstaller.Shared.Exceptions
{
public class TaskInProgressException : Exception
{
public TaskInProgressException() {}
public TaskInProgressException(string message) : base(message) {}
public TaskInProgressException(string message, Exception inner) : base(message, inner) {}
}
}