Skip to content
Snippets Groups Projects
Commit 769ffb99 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Removed impossible exceptions.

parent 319a8159
No related branches found
No related tags found
No related merge requests found
Pipeline #1592 passed
......@@ -415,21 +415,7 @@ public class DumpReplayer {
return rugged;
} catch (IOException ioe) {
throw new RuggedException(ioe, LocalizedCoreFormats.SIMPLE_MESSAGE, ioe.getLocalizedMessage());
} catch (SecurityException e) {
// this should never happen
throw new RuggedInternalError(e);
} catch (NoSuchMethodException e) {
// this should never happen
throw new RuggedInternalError(e);
} catch (IllegalArgumentException e) {
// this should never happen
throw new RuggedInternalError(e);
} catch (IllegalAccessException e) {
// this should never happen
throw new RuggedInternalError(e);
} catch (InvocationTargetException e) {
} catch (IOException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
// this should never happen
throw new RuggedInternalError(e);
}
......
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