try {
final InputStream inputStream = ioService.newInputStream( paths.convert( path ),
StandardOpenOption.READ );
//Signal opening to interested parties
resourceOpenedEvent.fire( new ResourceOpenedEvent( path ) );
return inputStream;
} catch ( Exception e ) {
throw ExceptionUtilities.handleException( e );