blob: d963c3914cddfcffb0b2324a5c369f5e31253392 (
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 chain specified does not fit into a single
* leg.
*/
public class Mix3BadArgumentsChainTooLongException extends Mix3BadArgumentsException {
public Mix3BadArgumentsChainTooLongException(String s) {
super(s);
}
public Mix3BadArgumentsChainTooLongException(String s, Throwable cause) {
super(s, cause);
}
}
|