blob: 01c4a6d783d556c9c7566920fe346bfc120a0b64 (
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 Mix3BadArgumentsIllegalPathSpecException extends Mix3BadArgumentsException {
public Mix3BadArgumentsIllegalPathSpecException(String s) {
super(s);
}
public Mix3BadArgumentsIllegalPathSpecException(String s, Throwable cause) {
super(s, cause);
}
}
|