Backend/e-suite.API.Common/e-suite.API.Common/exceptions/EmailNotConfirmedException.cs
2026-01-20 21:50:10 +00:00

24 lines
584 B
C#

namespace e_suite.API.Common.exceptions;
public class EmailNotConfirmedException : Exception
{
public EmailNotConfirmedException()
{
}
public EmailNotConfirmedException(string? message)
: base(message)
{
}
// Creates a new Exception. All derived classes should
// provide this constructor.
// Note: the stack trace is not started until the exception
// is thrown
//
public EmailNotConfirmedException(string? message, Exception? innerException)
: base(message, innerException)
{
}
}