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

12 lines
233 B
C#

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