mirror of https://github.com/apache/lucene.git
don't swallow exception
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@610015 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d029ba59c8
commit
02909676f7
|
@ -189,7 +189,7 @@ abstract class CSVLoader {
|
|||
base.add(builder,line,column,val);
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new SolrException( SolrException.ErrorCode.BAD_REQUEST,"");
|
||||
throw new SolrException( SolrException.ErrorCode.BAD_REQUEST,e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue