我有以下代码示例:
private boolean openThroughCommPort(IProgressMonitor monitor, int portNum)
throws InterruptedException, PortInUseException, IOException,
UnsupportedCommOperationException, TooManyListenersException,
UnsupportedVehicleException, InnerCanceledException {
...
}
我不确定这是一个好方法 - 在方法签名中抛出许多异常。
也许你可以告诉我这个案例的最佳实践?