Files
QuestPDF/QuestPDF/Drawing/Exceptions/DocumentComposeException.cs
T

12 lines
232 B
C#

using System;
namespace QuestPDF.Drawing.Exceptions
{
public class DocumentComposeException : Exception
{
internal DocumentComposeException(string message) : base(message)
{
}
}
}