Package com.sas.lsaf.content.repository
Class RepositoryItemCheckinException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sas.lsaf.core.AbstractCheckedException
com.sas.lsaf.content.repository.RepositoryException
com.sas.lsaf.content.repository.RepositoryItemException
com.sas.lsaf.content.repository.RepositoryItemCheckinException
- All Implemented Interfaces:
Serializable
Thrown when an attempt is made to check in a file that is not checked out.
This exception can also be thrown when the check in specification cannot be satisfied. For example, you specify a check in with a custom version number of 4.1, but the file is currently at version 6.0.
- Since:
- 1.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRepositoryItemCheckinException(String path, String message) Constructs aRepositoryItemCheckinExceptionwith the specified path and message. -
Method Summary
Methods inherited from class com.sas.lsaf.content.repository.RepositoryItemException
getPathMethods inherited from class com.sas.lsaf.core.AbstractCheckedException
getMessage, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RepositoryItemCheckinException
Constructs aRepositoryItemCheckinExceptionwith the specified path and message.- Parameters:
path- The path to the repository item.message- The detail message (which is saved for later retrieval by theAbstractCheckedException.getMessage()method).
-