64a36970d6
* Maintains PHP `7.4` compatibility and adds PHP `8.4` compatibility * The `4.4.x` branch does the same, but I didn't see any reason not to go to `5.0.x`. * https://github.com/chillerlan/php-qrcode/releases
21 lines
293 B
PHP
21 lines
293 B
PHP
<?php
|
|
/**
|
|
* Class QRCodeException
|
|
*
|
|
* @created 27.11.2015
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2015 Smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCode;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* An exception container
|
|
*/
|
|
class QRCodeException extends Exception{
|
|
|
|
}
|