Package javax.jcr
Class InvalidItemStateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.jcr.RepositoryException
-
- javax.jcr.InvalidItemStateException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidItemStateException extends RepositoryException
Exception thrown by the write methods ofNode
andProperty
and bySession.save()
andSession.refresh(boolean)
if an attempted change would conflict with a change to the persistent workspace made through anotherSession
. Also thrown by methods ofNode
andProperty
if that object represents an item that has been removed from the workspace.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidItemStateException()
Constructs a new instance of this class withnull
as its detail message.InvalidItemStateException(java.lang.String message)
Constructs a new instance of this class with the specified detail message.InvalidItemStateException(java.lang.String message, java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified detail message and root cause.InvalidItemStateException(java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified root cause.
-
-
-
Constructor Detail
-
InvalidItemStateException
public InvalidItemStateException()
Constructs a new instance of this class withnull
as its detail message.
-
InvalidItemStateException
public InvalidItemStateException(java.lang.String message)
Constructs a new instance of this class with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
InvalidItemStateException
public InvalidItemStateException(java.lang.String message, java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified detail message and root cause.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.rootCause
- root failure cause
-
InvalidItemStateException
public InvalidItemStateException(java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified root cause.- Parameters:
rootCause
- root failure cause
-
-