25 lines
650 B
PHP
25 lines
650 B
PHP
<?php
|
|
/**
|
|
*--------------------------------------------------------------------
|
|
*
|
|
* Draw Exception
|
|
*
|
|
*--------------------------------------------------------------------
|
|
* @author Akhtar Khan <er.akhtarkhan@gmail.com>
|
|
* @link http://www.codeitnow.in
|
|
* @package https://github.com/codeitnowin/barcode-generator
|
|
*/
|
|
namespace CodeItNow\BarcodeBundle\Generator;
|
|
use Exception;
|
|
|
|
class CINDrawException extends Exception {
|
|
/**
|
|
* Constructor with specific message.
|
|
*
|
|
* @param string $message
|
|
*/
|
|
public function __construct($message) {
|
|
parent::__construct($message, 30000);
|
|
}
|
|
}
|
|
?>
|