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