Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

BCGDrawException.php 486 B

3 anni fa
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. ?>