This commit is contained in:
Miskolczi Richárd
2023-03-24 14:09:46 +01:00
parent 99498ed660
commit 01a926d316
9 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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) { }
}
}