Ascii85Exception.php 501 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * This file is part of FPDI
  4. *
  5. * @package Fpdi
  6. * @copyright Copyright (c) 2020 Setasign GmbH & Co. KG (https://www.setasign.com)
  7. * @license http://opensource.org/licenses/mit-license The MIT License
  8. */
  9. namespace Fpdi\PdfParser\Filter;
  10. /**
  11. * Exception for Ascii85 filter class
  12. */
  13. class Ascii85Exception extends FilterException
  14. {
  15. /**
  16. * @var integer
  17. */
  18. const ILLEGAL_CHAR_FOUND = 0x0301;
  19. /**
  20. * @var integer
  21. */
  22. const ILLEGAL_LENGTH = 0x0302;
  23. }