fAddress = ((Connector.StringArgument) connectionArgs
.get(attribute)).value();
attribute = "quote"; //$NON-NLS-1$
((Connector.StringArgument) connectionArgs.get(attribute)).value();
} catch (ClassCastException e) {
throw new IllegalConnectorArgumentsException(
ConnectMessages.SocketRawLaunchingConnectorImpl_Connection_argument_is_not_of_the_right_type_8,
attribute);
} catch (NullPointerException e) {
throw new IllegalConnectorArgumentsException(
ConnectMessages.SocketRawLaunchingConnectorImpl_Necessary_connection_argument_is_null_9,
attribute);
} catch (NumberFormatException e) {
throw new IllegalConnectorArgumentsException(
ConnectMessages.SocketRawLaunchingConnectorImpl_Connection_argument_is_not_a_number_10,
attribute);
}
}