mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-25 05:07:57 +00:00
16 lines
315 B
PHP
16 lines
315 B
PHP
<?php
|
|
/**
|
|
* Class QRCodeDecoderException
|
|
*
|
|
* @created 01.12.2021
|
|
* @author smiley <smiley@chillerlan.net>
|
|
* @copyright 2021 smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCode\Decoder;
|
|
|
|
use chillerlan\QRCode\QRCodeException;
|
|
|
|
final class QRCodeDecoderException extends QRCodeException{}
|