mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 17:17:51 +00:00
23 lines
354 B
PHP
23 lines
354 B
PHP
<?php
|
|
/**
|
|
* Class QRCodeException
|
|
*
|
|
* @filesource QRCodeException.php
|
|
* @created 27.11.2015
|
|
* @package chillerlan\QRCode
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2015 Smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCode;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Placeholder
|
|
*/
|
|
class QRCodeException extends Exception{
|
|
|
|
}
|