Skip to content

Commit

Permalink
#3735: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 23, 2024
1 parent 88ce653 commit c619668
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions eo-runtime/src/main/java/org/eolang/PhLocated.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,6 @@ private <T> T through(final Action<T> action) {
private <T> T through(final Action<T> action, final String suffix) {
try {
return action.act();
} catch (final ExUnset ex) {
throw new ExUnset(this.label(suffix), ex);
} catch (final ExReadOnly ex) {
throw new ExReadOnly(this.label(suffix), ex);
} catch (final EOerror.ExError ex) {
throw new EOerror.ExError(ex, this.label(suffix));
} catch (final RuntimeException | Error ex) {
Expand Down

0 comments on commit c619668

Please sign in to comment.