Files
Wino-Mail/Wino.Core.Domain/Exceptions/CustomThemeCreationFailedException.cs

12 lines
238 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
namespace Wino.Core.Domain.Exceptions
{
public class CustomThemeCreationFailedException : Exception
{
public CustomThemeCreationFailedException(string message) : base(message)
{
}
}
}