using System; using System.Runtime.CompilerServices; namespace Password_Manager { sealed class ProfileNotFoundException : Exception { public ProfileNotFoundException() : base() { } public ProfileNotFoundException(string message) : base(message) { } public ProfileNotFoundException(string message, Exception inner) : base(message, inner) { } } }