14 lines
386 B
C#
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) { }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|