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