summaryrefslogtreecommitdiff
path: root/src/ext/plantuml/com/google/zxing/common/reedsolomon/ReedSolomonException.java
diff options
context:
space:
mode:
authorAlex Kirchhoff <debian@usertracker.org>2018-08-04 20:08:57 -0700
committerAndrej Shadura <andrewsh@debian.org>2018-08-05 11:42:33 +0200
commita2f615da39bfb2f0659ac90f97acc6b28f159635 (patch)
tree0dcc47a067044c553707cdb84ad0449367349db2 /src/ext/plantuml/com/google/zxing/common/reedsolomon/ReedSolomonException.java
parentea27cde858e3ef72889062e06cc1b4c90945f51f (diff)
parent293202087ef00accaa85af02c2c9359ab6b2513c (diff)
New upstream version (1.2018.9)debian/1%1.2018.9-1
* Update pdf.patch; add libavalon-framework-java, libcommons-io-java, libcommons-logging-java, libxml-commons-external-java, libxmlgraphics-commons-java as dependencies * Fix "Upgrade to version 1.2018.4 and improve description" by updating to newest upstream and updating description with new features (Closes: #897414) * Update Standards-Version from 4.0.0 to 4.1.5 (no change needed)
Diffstat (limited to 'src/ext/plantuml/com/google/zxing/common/reedsolomon/ReedSolomonException.java')
-rw-r--r--src/ext/plantuml/com/google/zxing/common/reedsolomon/ReedSolomonException.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/ext/plantuml/com/google/zxing/common/reedsolomon/ReedSolomonException.java b/src/ext/plantuml/com/google/zxing/common/reedsolomon/ReedSolomonException.java
new file mode 100644
index 0000000..65301ef
--- /dev/null
+++ b/src/ext/plantuml/com/google/zxing/common/reedsolomon/ReedSolomonException.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2007 ZXing authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package ext.plantuml.com.google.zxing.common.reedsolomon;
+
+/**
+ * <p>Thrown when an exception occurs during Reed-Solomon decoding, such as when
+ * there are too many errors to correct.</p>
+ *
+ * @author Sean Owen
+ */
+public final class ReedSolomonException extends Exception {
+
+ public ReedSolomonException(String message) {
+ super(message);
+ }
+
+} \ No newline at end of file