mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-20 08:40:21 +00:00
22 lines
373 B
PHP
22 lines
373 B
PHP
<?php
|
|
/**
|
|
* Class QRCodeOutputException
|
|
*
|
|
* @created 09.12.2015
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2015 Smiley
|
|
* @license MIT
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace chillerlan\QRCode\Output;
|
|
|
|
use chillerlan\QRCode\QRCodeException;
|
|
|
|
/**
|
|
* An exception container
|
|
*/
|
|
final class QRCodeOutputException extends QRCodeException{
|
|
|
|
}
|