22 lines
436 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |