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

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