9 lines
287 B
C#
9 lines
287 B
C#
|
namespace Services.Support.Exceptions;
|
||
|
|
||
|
public class AlreadyExistsException : Exception
|
||
|
{
|
||
|
public AlreadyExistsException(string message) : base(message) { }
|
||
|
|
||
|
public AlreadyExistsException(string message, Exception innerException)
|
||
|
: base(message, innerException) { }
|
||
|
}
|