This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/Password Manager/Profiles/ProfileNotFoundException.cs
Miskolczi Richárd 01a926d316 asd
2023-03-24 14:09:46 +01:00

14 lines
386 B
C#

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) { }
}
}