mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-06 09:25:01 -05:00
22 lines
399 B
Java
22 lines
399 B
Java
|
package java.net;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
public class UnknownServiceException extends IOException {
|
||
|
|
||
|
public UnknownServiceException() {
|
||
|
// TODO Auto-generated constructor stub
|
||
|
}
|
||
|
|
||
|
public UnknownServiceException(String s) {
|
||
|
super(s);
|
||
|
// TODO Auto-generated constructor stub
|
||
|
}
|
||
|
|
||
|
public UnknownServiceException(Exception e) {
|
||
|
super(e);
|
||
|
// TODO Auto-generated constructor stub
|
||
|
}
|
||
|
|
||
|
}
|