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

11 lines
324 B
C#
Raw Normal View History

2023-03-27 00:19:30 +02:00
namespace Profiles
2023-03-24 12:01:08 +01:00
{
sealed class ProfileNotFoundException : Exception
{
public ProfileNotFoundException() : base() { }
public ProfileNotFoundException(string message) : base(message) { }
public ProfileNotFoundException(string message, Exception inner) : base(message, inner) { }
}
}