12 lines
232 B
C#
12 lines
232 B
C#
using System;
|
|
|
|
namespace QuestPDF.Drawing.Exceptions
|
|
{
|
|
public class DocumentComposeException : Exception
|
|
{
|
|
internal DocumentComposeException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |