I have following code example:
private boolean openThroughCommPort(IProgressMonitor monitor, int portNum)
throws InterruptedException, PortInUseException, IOException,
UnsupportedCommOperationException, TooManyListenersException,
UnsupportedVehicleException, InnerCanceledException {
...
}
I don't sure that it is good way - throws many many exceptions in method signature.
Maybe you can tell me best practies for this case?