Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor patch #7

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add exception handler onStart function
dwlee committed Dec 19, 2014
commit a53e2bdac292e606706b6d5624b5191e15b10506
Original file line number Diff line number Diff line change
@@ -33,9 +33,15 @@ public MasterInfo() {
}
@Override
public void onStart(final ConnectedNode connectedNode) {
RosTopicInfo topicInformation = new RosTopicInfo(connectedNode);
String topicName = topicInformation.findTopic("rocon_std_msgs/MasterInfo");
this.masterInfoListener.connect(connectedNode, topicName, rocon_std_msgs.MasterInfo._TYPE);
try{
RosTopicInfo topicInformation = new RosTopicInfo(connectedNode);
String topicName = topicInformation.findTopic("rocon_std_msgs/MasterInfo");
this.masterInfoListener.connect(connectedNode, topicName, rocon_std_msgs.MasterInfo._TYPE);
} catch (RosRuntimeException e){
return;
}


}

/**