LzwException.php 428 B

12345678910111213141516171819202122
  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 LZW filter class
  12. */
  13. class LzwException extends FilterException
  14. {
  15. /**
  16. * @var integer
  17. */
  18. const LZW_FLAVOUR_NOT_SUPPORTED = 0x0501;
  19. }