* @link http://www.codeitnow.in * @package https://github.com/codeitnowin/barcode-generator */ namespace CodeItNow\BarcodeBundle\Generator; use Exception; class CINParseException 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); } } ?>