Skip to content

Commit

Permalink
Fix UnwrappedIOException->JacksonIOException
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Oct 29, 2023
1 parent 810273f commit 35d045e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.io.IOException;

import tools.jackson.core.JacksonException;
import tools.jackson.core.exc.WrappedIOException;
import tools.jackson.core.exc.JacksonIOException;
import tools.jackson.databind.DeserializationContext;
import tools.jackson.databind.KeyDeserializer;
import tools.jackson.datatype.joda.cfg.FormatConfig;
Expand All @@ -29,6 +29,6 @@ protected abstract Object deserialize(String key, DeserializationContext ctxt)
protected JacksonException _wrapJodaFailure(IOException e) {
// 18-Jan-2021, tatu: Start by simply reusing functionality of more
// general handling, for now
return WrappedIOException.construct(e);
return JacksonIOException.construct(e);
}
}

0 comments on commit 35d045e

Please sign in to comment.