| 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 = "IllegalStateFault", targetNamespace = CoreConstants.Namespaces.CORE_NAMESPACE_2_0) |
| 13 | |
@SuppressWarnings("unused") |
| 14 | |
public class RiceIllegalStateException extends IllegalStateException { |
| 15 | 0 | public RiceIllegalStateException() { |
| 16 | 0 | } |
| 17 | |
|
| 18 | |
public RiceIllegalStateException(String s) { |
| 19 | 0 | super(s); |
| 20 | 0 | } |
| 21 | |
|
| 22 | |
public RiceIllegalStateException(String s, Throwable throwable) { |
| 23 | 0 | super(s, throwable); |
| 24 | 0 | } |
| 25 | |
|
| 26 | |
public RiceIllegalStateException(Throwable throwable) { |
| 27 | 0 | super(throwable); |
| 28 | 0 | } |
| 29 | |
} |