12 lines
370 B
C#
12 lines
370 B
C#
namespace Liber_Incantamentum.Application.Exceptions
|
|
{
|
|
public class AlreadyExistingException : Exception
|
|
{
|
|
public AlreadyExistingException() { }
|
|
public AlreadyExistingException(string message) : base(message) { }
|
|
public AlreadyExistingException(string? message, Exception? innerException) : base(message, innerException) { }
|
|
}
|
|
}
|
|
|
|
|