blob: 055b28f427ccc804993513c23f4bd4664b3b9ca7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $Id$ */
package org.noreply.fancydress.status;
/**
* An entry in the server descriptor violates the syntax given in the specs.
*/
public class Mix3BadServerFormatException extends Mix3BadFormatException {
public Mix3BadServerFormatException(String s) {
super(s);
}
public Mix3BadServerFormatException(String s, Throwable cause) {
super(s, cause);
}
}
|