blob: f6e594d768fc8f6a2d704d2fdc65b5487d1fc903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $Id$ */
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);
}
}
|