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.
|
- <?php
- /**
- *--------------------------------------------------------------------
- *
- * Draw Exception
- *
- *--------------------------------------------------------------------
- * Copyright (C) Jean-Sebastien Goupil
- * http://www.barcodephp.com
- */
- class BCGDrawException extends Exception {
- /**
- * Constructor with specific message.
- *
- * @param string $message
- */
- public function __construct($message) {
- parent::__construct($message, 30000);
- }
- }
- ?>
|