Add to result the raw, but parsed, bytes of byte segments in 2D barcodes
[zxing.git] / core / src / com / google / zxing / common / reedsolomon / ReedSolomonException.java
index a39eb47..d5b45a6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 Google Inc.
+ * 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.
@@ -20,13 +20,10 @@ package 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 srowen@google.com (Sean Owen)
+ * @author Sean Owen
  */
 public final class ReedSolomonException extends Exception {
 
-  public ReedSolomonException() {
-  }
-
   public ReedSolomonException(String message) {
     super(message);
   }