Files
QuestPDF/QuestPDF/Drawing/Exceptions/DocumentDrawingException.cs
T
2021-01-16 01:31:39 +01:00

22 lines
436 B
C#

using System;
namespace QuestPDF.Drawing.Exceptions
{
public class DocumentDrawingException : Exception
{
public DocumentDrawingException()
{
}
public DocumentDrawingException(string message) : base(message)
{
}
public DocumentDrawingException(string message, Exception inner) : base(message, inner)
{
}
}
}