You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 regels
486 B

  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. ?>