template engine

This commit is contained in:
EugeneTes
2026-02-03 14:27:13 +01:00
parent 46b648d753
commit ec5decb12e
31 changed files with 4640 additions and 946 deletions

View File

@@ -0,0 +1,13 @@
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) { }
}