Files
Wino-Mail/Wino.Core.Domain/Exceptions/CustomThemeCreationFailedException.cs
Burak Kaan Köse 12d3814626 Initial commit.
2024-04-18 01:44:37 +02:00

12 lines
238 B
C#

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