mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 18:27:52 +00:00
22 lines
318 B
PHP
22 lines
318 B
PHP
<?php
|
|
/**
|
|
* Class QRCodeException
|
|
*
|
|
* @created 27.11.2015
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2015 Smiley
|
|
* @license MIT
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace chillerlan\QRCode;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* An exception container
|
|
*/
|
|
class QRCodeException extends Exception{
|
|
|
|
}
|