Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e38cc57e authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- fixed not thrown exception

parent 7eb9f9ba
No related branches found
No related tags found
No related merge requests found
......@@ -271,12 +271,7 @@ public class VolatilCache implements Cache {
try {
result = getAlignment( uri );
} catch (AlignmentException alex) {
try {
result = alignmentURITable.get( uri );
} catch (URISyntaxException uriex) {
logger.error( "URISyntaxException on {}", uri );
throw alex;
}
result = alignmentURITable.get( uri );
}
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment