DispatchException
563564565566567568569570
return new FileOutputStream(file, isOutputAppend()); } catch (IOException e) { throw new DispatchException(CoreMessages.streamingFailedNoStream(), event, endpoint, e); } }
5152535455565758596061
{ OutputStream out = connector.getOutputStream(); if (out == null) { throw new DispatchException(StdioMessages.couldNotFindStreamWithName(endpoint), event, getEndpoint()); } if (connector instanceof PromptStdioConnector) {
919293949596979899100101
{ Object data = event.getMessage().getPayload(); if (!(data instanceof Message)) { throw new DispatchException( CoreMessages.transformUnexpectedType(data.getClass(), Message.class), event, this); } else {