Files
Wino-Mail/Wino.Core.Domain/Exceptions/CustomThemeCreationFailedException.cs
2025-02-16 11:54:23 +01:00

11 lines
212 B
C#

using System;
namespace Wino.Core.Domain.Exceptions;
public class CustomThemeCreationFailedException : Exception
{
public CustomThemeCreationFailedException(string message) : base(message)
{
}
}