template engine
This commit is contained in:
13
Inspectron.Epson.TemplateEngine/Exceptions.cs
Normal file
13
Inspectron.Epson.TemplateEngine/Exceptions.cs
Normal 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) { }
|
||||
}
|
||||
Reference in New Issue
Block a user