28 lines
681 B
C#
28 lines
681 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EnvelopeGenerator.Application.Exceptions;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CreateReportException : ApplicationException
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
public CreateReportException(string message)
|
|
: base(message) { }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <param name="innerException"></param>
|
|
public CreateReportException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
} |