1 | |
package org.kuali.rice.core.api.exception; |
2 | |
|
3 | |
import org.kuali.rice.core.api.CoreConstants; |
4 | |
|
5 | |
import javax.xml.ws.WebFault; |
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
@WebFault(name = "IllegalArgumentFault", targetNamespace = CoreConstants.Namespaces.CORE_NAMESPACE_2_0) |
13 | |
public class RiceIllegalArgumentException extends IllegalArgumentException { |
14 | |
|
15 | |
private static final long serialVersionUID = 3246611328810430837L; |
16 | |
|
17 | 0 | public RiceIllegalArgumentException() { |
18 | 0 | } |
19 | |
|
20 | |
public RiceIllegalArgumentException(String s) { |
21 | 0 | super(s); |
22 | 0 | } |
23 | |
|
24 | |
public RiceIllegalArgumentException(String s, Throwable throwable) { |
25 | 0 | super(s, throwable); |
26 | 0 | } |
27 | |
|
28 | |
public RiceIllegalArgumentException(Throwable throwable) { |
29 | 0 | super(throwable); |
30 | 0 | } |
31 | |
} |