Files
2026-02-03 14:27:13 +01:00

14 lines
531 B
C#

namespace Inspectron.Epson.TemplateEngine;
public class TemplateParsingException : Exception
{
public TemplateParsingException(string message) : base(message) { }
public TemplateParsingException(string message, Exception innerException) : base(message, innerException) { }
}
public class TemplateRenderingException : Exception
{
public TemplateRenderingException(string message) : base(message) { }
public TemplateRenderingException(string message, Exception innerException) : base(message, innerException) { }
}