12345678910111213141516171819202122232425 |
- <?php
- /**
- *--------------------------------------------------------------------
- *
- * Parse Exception
- *
- *--------------------------------------------------------------------
- * Copyright (C) Jean-Sebastien Goupil
- * http://www.barcodephp.com
- */
- class BCGParseException extends Exception {
- protected $barcode;
- /**
- * Constructor with specific message for a parameter.
- *
- * @param string $barcode
- * @param string $message
- */
- public function __construct($barcode, $message) {
- $this->barcode = $barcode;
- parent::__construct($message, 10000);
- }
- }
- ?>
|