mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 07:17:57 +00:00
19 lines
348 B
PHP
19 lines
348 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;
|
|
|
|
/**
|
|
* An exception container
|
|
*/
|
|
class QRCodeException extends \Exception{}
|