Skip to content

Commit

Permalink
[java] Deprecating an unused exception class
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Sep 29, 2019
1 parent 7a01fd8 commit 74914ed
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
import java.io.IOException;
import java.net.URL;

/**
* @deprecated Unused exception class. To be removed in 4.0
*/
@Deprecated
public class NotConnectedException extends IOException {
public NotConnectedException(URL url, long timeToWaitInMilliSeconds, String consoleOutput) {
super(getMessage(url, timeToWaitInMilliSeconds, consoleOutput));
Expand Down

0 comments on commit 74914ed

Please sign in to comment.