namespace Profiles
{
sealed class ProfileNotFoundException : Exception
public ProfileNotFoundException() : base() { }
public ProfileNotFoundException(string message) : base(message) { }
public ProfileNotFoundException(string message, Exception inner) : base(message, inner) { }
}