"Split" ReaderException into subclasses to enable more useful error reporting
[zxing.git] / core / src / com / google / zxing / multi / MultipleBarcodeReader.java
index c3b4310..5f0c7eb 100644 (file)
@@ -16,9 +16,9 @@
 
 package com.google.zxing.multi;
 
-import com.google.zxing.Result;
 import com.google.zxing.BinaryBitmap;
-import com.google.zxing.ReaderException;
+import com.google.zxing.NotFoundException;
+import com.google.zxing.Result;
 
 import java.util.Hashtable;
 
@@ -30,8 +30,8 @@ import java.util.Hashtable;
  */
 public interface MultipleBarcodeReader {
 
-  Result[] decodeMultiple(BinaryBitmap image) throws ReaderException;
+  Result[] decodeMultiple(BinaryBitmap image) throws NotFoundException;
 
-  Result[] decodeMultiple(BinaryBitmap image, Hashtable hints) throws ReaderException;
+  Result[] decodeMultiple(BinaryBitmap image, Hashtable hints) throws NotFoundException;
 
 }