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.
25 lines
604 B
25 lines
604 B
<?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);
|
|
}
|
|
}
|
|
?>
|