blob: 07c576803668cca5c86f609b6acc9f186594b6b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $Id$ */
package org.noreply.fancydress.status;
/**
* The operation failed because the server descriptor was not correctly signed,
* or no signature was found.
*/
public class Mix3BadServerSignatureException extends Mix3BadSignatureException {
public Mix3BadServerSignatureException(String s) {
super(s);
}
public Mix3BadServerSignatureException(String s, Throwable cause) {
super(s, cause);
}
}
|