選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

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