comparison common/src/main/java/digilib/io/FileOpException.java @ 906:28d007673346

really works with streams now. (only with ImageLoaderDocuImage with reuseReader=true)
author robcast
date Wed, 04 May 2011 15:04:38 +0200
parents 7779b37d1d05
children 197acee9bac5
comparison
equal deleted inserted replaced
905:afd82fe0c48a 906:28d007673346
30 } 30 }
31 31
32 public FileOpException(String s) { 32 public FileOpException(String s) {
33 super(s); 33 super(s);
34 } 34 }
35
36 public FileOpException(String message, Throwable cause) {
37 super(message, cause);
38 }
35 } 39 }