summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/status/Mix3BadServerUnrecognizedVersionException.java
blob: d2cc3641bc2e3474c29e4279d549f53a0db40b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.noreply.fancydress.status;

/**
 * The Server Descriptor had a Descriptor-Version that was not recognized by
 * this implementation.
 */
public class Mix3BadServerUnrecognizedVersionException extends Mix3BadServerFormatException {
	public Mix3BadServerUnrecognizedVersionException(String s) {
		super(s);
	}
	public Mix3BadServerUnrecognizedVersionException(String s, Throwable cause) {
		super(s, cause);
	}
}