flesh out URL and friends

This commit is contained in:
Joel Dice
2007-08-02 19:49:32 -06:00
parent 1997ea6b8c
commit 2e9b9fe8d4
6 changed files with 234 additions and 12 deletions

View File

@ -0,0 +1,13 @@
package java.net;
import java.io.IOException;
public class UnknownServiceException extends IOException {
public UnknownServiceException(String message) {
super(message);
}
public UnknownServiceException() {
this(null);
}
}