Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
<?php
>
/** * This file is part of FPDI * * @package setasign\Fpdi
< * @copyright Copyright (c) 2019 Setasign - Jan Slabon (https://www.setasign.com)
> * @copyright Copyright (c) 2020 Setasign GmbH & Co. KG (https://www.setasign.com)
* @license http://opensource.org/licenses/mit-license The MIT License */ namespace setasign\Fpdi\PdfParser\CrossReference; use setasign\Fpdi\PdfParser\PdfParserException; /** * Exception used by the CrossReference and Reader classes.
< * < * @package setasign\Fpdi\PdfParser\CrossReference
*/ class CrossReferenceException extends PdfParserException { /** * @var int */ const INVALID_DATA = 0x0101; /** * @var int */ const XREF_MISSING = 0x0102; /** * @var int */ const ENTRIES_TOO_LARGE = 0x0103; /** * @var int */ const ENTRIES_TOO_SHORT = 0x0104; /** * @var int */ const NO_ENTRIES = 0x0105; /** * @var int */ const NO_TRAILER_FOUND = 0x0106; /** * @var int */ const NO_STARTXREF_FOUND = 0x0107; /** * @var int */ const NO_XREF_FOUND = 0x0108; /** * @var int */ const UNEXPECTED_END = 0x0109; /** * @var int */ const OBJECT_NOT_FOUND = 0x010A; /** * @var int */ const COMPRESSED_XREF = 0x010B; /** * @var int */ const ENCRYPTED = 0x010C; }