Files
QuestPDF/QuestPDF/Drawing/Exceptions/DocumentLayoutException.cs
T
2021-09-07 00:32:51 +02:00

24 lines
490 B
C#

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