Files
opensourcepos/application/libraries/barcodegen/class/BCGDrawException.php
2015-02-02 12:44:58 +01:00

21 lines
506 B
PHP
Executable File

<?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);
}
}
?>