aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php')
-rw-r--r--vendor/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php b/vendor/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php
new file mode 100644
index 000000000..11157afc1
--- /dev/null
+++ b/vendor/chillerlan/php-qrcode/src/Decoder/QRCodeDecoderException.php
@@ -0,0 +1,20 @@
+<?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;
+
+/**
+ * An exception container
+ */
+final class QRCodeDecoderException extends QRCodeException{
+
+}