22 lines
567 B
C#
22 lines
567 B
C#
namespace EnvelopeGenerator.Application.Exceptions;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class MergeDocumentException : ApplicationException
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
public MergeDocumentException(string message)
|
|
: base(message) { }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <param name="innerException"></param>
|
|
public MergeDocumentException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
} |