BCGDrawException.php 486 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. *--------------------------------------------------------------------
  4. *
  5. * Draw Exception
  6. *
  7. *--------------------------------------------------------------------
  8. * Copyright (C) Jean-Sebastien Goupil
  9. * http://www.barcodephp.com
  10. */
  11. class BCGDrawException extends Exception {
  12. /**
  13. * Constructor with specific message.
  14. *
  15. * @param string $message
  16. */
  17. public function __construct($message) {
  18. parent::__construct($message, 30000);
  19. }
  20. }
  21. ?>