add BurnAnnotationException

This commit is contained in:
Developer 02
2025-11-06 21:51:20 +01:00
parent 2bada327d8
commit 7b13350fbf
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
namespace EnvelopeGenerator.Application.Exceptions;
/// <summary>
///
/// </summary>
public class BurnAnnotationException : ApplicationException
{
/// <summary>
///
/// </summary>
public BurnAnnotationException(string message)
: base(message) { }
/// <summary>
///
/// </summary>
public BurnAnnotationException(string message, Exception innerException)
: base(message, innerException) { }
}