summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/status/Mix3BadServerFormatException.java
blob: ab5590c9548088ba65886b2263964485a39cd1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
	}
}