12 lines
244 B
C#
12 lines
244 B
C#
namespace ExpenseTracker.Application.Common.Exceptions;
|
|
|
|
public class RegistrationException : Exception
|
|
{
|
|
public RegistrationException()
|
|
: base() { }
|
|
|
|
public RegistrationException(string message)
|
|
: base(message) { }
|
|
}
|
|
|