final byte c = (byte) inputStream.read();
return c;
} catch (final IOException e) {
final String detailedMessage = "problem reading byte";
LOGGER.error("{}: ", detailedMessage, e);
throw new IOStreamException(INPUT_OUTPUT_STREAM_EXCEPTION, detailedMessage, e);
}
}