Class RepositoryDataException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.kuali.rice.core.api.exception.RiceRuntimeException
org.kuali.rice.krms.api.repository.RepositoryDataException
- All Implemented Interfaces:
Serializable
public class RepositoryDataException
extends org.kuali.rice.core.api.exception.RiceRuntimeException
A runtime exception which indicates an unrecoverable data issue in the
rule repository.
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructorRepositoryDataException(String message) RepositoryDataException(String message, Throwable cause) RepositoryDataException(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RepositoryDataException
public RepositoryDataException()Default constructor -
RepositoryDataException
- Parameters:
message- the exception messagecause- the root Throwable cause.
-
RepositoryDataException
- Parameters:
message- the exception message
-
RepositoryDataException
- Parameters:
cause- the root Throwable cause.
-