218219220221222223224225226227228
er.setServiceErrorCode(appCode); final byte[] mapBytes; try { mapBytes = new JacksonDataCodec().mapToBytes(er.data()); } catch (final IOException e) { throw new RuntimeException(e); }
719720721722723724725726727728729
er.setServiceErrorCode(appCode); byte[] mapBytes; try { mapBytes = new JacksonDataCodec().mapToBytes(er.data()); } catch (IOException e) { throw new RuntimeException(e); }