diff options
Diffstat (limited to 'vendor/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php')
-rw-r--r-- | vendor/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php b/vendor/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php new file mode 100644 index 000000000..2444e193c --- /dev/null +++ b/vendor/chillerlan/php-qrcode/src/Detector/QRCodeDetectorException.php @@ -0,0 +1,20 @@ +<?php +/** + * Class QRCodeDetectorException + * + * @created 01.12.2021 + * @author smiley <smiley@chillerlan.net> + * @copyright 2021 smiley + * @license MIT + */ + +namespace chillerlan\QRCode\Detector; + +use chillerlan\QRCode\QRCodeException; + +/** + * An exception container + */ +final class QRCodeDetectorException extends QRCodeException{ + +} |