12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace Fpdi\PdfParser;
- use Fpdi\FpdiException;
- class PdfParserException extends FpdiException
- {
-
- const NOT_IMPLEMENTED = 0x0001;
-
- const IMPLEMENTED_IN_FPDI_PDF_PARSER = 0x0002;
-
- const INVALID_DATA_TYPE = 0x0003;
-
- const FILE_HEADER_NOT_FOUND = 0x0004;
-
- const PDF_VERSION_NOT_FOUND = 0x0005;
-
- const INVALID_DATA_SIZE = 0x0006;
- }
|