11 lines
324 B
C#
11 lines
324 B
C#
namespace Profiles
|
|
{
|
|
sealed class ProfileNotFoundException : Exception
|
|
{
|
|
public ProfileNotFoundException() : base() { }
|
|
public ProfileNotFoundException(string message) : base(message) { }
|
|
public ProfileNotFoundException(string message, Exception inner) : base(message, inner) { }
|
|
|
|
}
|
|
}
|