8 lines
182 B
C#
8 lines
182 B
C#
namespace AutobusApi.Application.Common.Exceptions;
|
|
|
|
public class RegistrationException : Exception
|
|
{
|
|
public RegistrationException(string? message)
|
|
: base(message) { }
|
|
}
|