mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-16 12:22:48 +00:00
25 lines
604 B
PHP
25 lines
604 B
PHP
<?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);
|
|
}
|
|
}
|
|
?>
|