using System; namespace WindowsDisplayAPI.Exceptions { /// /// Represents errors that occurs because of missing or invalid registry address information /// public class InvalidRegistryAddressException : Exception { /// /// Creates a new InvalidRegistryAddressException exception /// /// The human readable message of the exception public InvalidRegistryAddressException(string message) : base(message) { } } }