2025-08-09 18:09:17 +02:00

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) { }
}
}