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
377 B

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