asd
This commit is contained in:
13
Password Manager/Profiles/ProfileNotFoundException.cs
Normal file
13
Password Manager/Profiles/ProfileNotFoundException.cs
Normal 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) { }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user