application/org.openjdk.jmc.rjmx.services.jfr/src/main/java/org/openjdk/jmc/rjmx/services/jfr/internal/JfrRecordingInputStreamV2.java [195:210]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	private Object invokeOperation(String name, Object ... params) throws IOException {
		try {
			return helper.invokeOperation(name, params);
		} catch (Exception ioe) {
			FlightRecorderServiceV1.LOGGER.info("Failed to invoke operation " + name + ". Will now close! Message was: " //$NON-NLS-1$ //$NON-NLS-2$
					+ ioe.getMessage());
			try {
				close();
			} catch (IOException ioe2) {
				// Don't care;
			}
			IOException iot = new IOException(ioe.getLocalizedMessage());
			iot.initCause(ioe);
			throw iot;
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



application/org.openjdk.jmc.rjmx.services.jfr/src/main/java/org/openjdk/jmc/rjmx/services/jfr/internal/JfrRecordingInputStreamV1.java [180:195]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	private Object invokeOperation(String name, Object ... params) throws IOException {
		try {
			return helper.invokeOperation(name, params);
		} catch (Exception ioe) {
			FlightRecorderServiceV1.LOGGER.info("Failed to invoke operation " + name + ". Will now close! Message was: " //$NON-NLS-1$ //$NON-NLS-2$
					+ ioe.getMessage());
			try {
				close();
			} catch (IOException ioe2) {
				// Don't care;
			}
			IOException iot = new IOException(ioe.getLocalizedMessage());
			iot.initCause(ioe);
			throw iot;
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



