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 | |
@SuppressWarnings("unused") |
14 | |
public class RiceIllegalArgumentException extends IllegalArgumentException { |
15 | 0 | public RiceIllegalArgumentException() { |
16 | 0 | } |
17 | |
|
18 | |
public RiceIllegalArgumentException(String s) { |
19 | 0 | super(s); |
20 | 0 | } |
21 | |
|
22 | |
public RiceIllegalArgumentException(String s, Throwable throwable) { |
23 | 0 | super(s, throwable); |
24 | 0 | } |
25 | |
|
26 | |
public RiceIllegalArgumentException(Throwable throwable) { |
27 | 0 | super(throwable); |
28 | 0 | } |
29 | |
} |