10 lines
274 B
C#
10 lines
274 B
C#
using PdfSharpCore.Pdf;
|
|
|
|
namespace PdfSharpCore.Exceptions
|
|
{
|
|
public class PositionNotFoundException : System.Exception
|
|
{
|
|
public PositionNotFoundException(PdfObjectID id) : base($"Object with ID {id} resolved with negative position ") { }
|
|
}
|
|
}
|