javax.jcr.InvalidItemStateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
The newest version!
/*
* Copyright 2009 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr;
/**
* Exception thrown by the write methods of {@link Node} and {@link Property}
* and by {@link Session#save} and {@link Session#refresh} if an attempted
* change would conflict with a change to the persistent workspace made through
* another {@link Session}. Also thrown by methods of Node
and
* Property
if that object represents an item that has been removed
* from the workspace.
*/
public class InvalidItemStateException extends RepositoryException {
/**
* Constructs a new instance of this class with null
as its
* detail message.
*/
public InvalidItemStateException() {
super();
}
/**
* Constructs a new instance of this class with the specified detail
* message.
*
* @param message the detail message. The detail message is saved for later
* retrieval by the {@link #getMessage()} method.
*/
public InvalidItemStateException(String message) {
super(message);
}
/**
* Constructs a new instance of this class with the specified detail message
* and root cause.
*
* @param message the detail message. The detail message is saved for later
* retrieval by the {@link #getMessage()} method.
* @param rootCause root failure cause
*/
public InvalidItemStateException(String message, Throwable rootCause) {
super(message, rootCause);
}
/**
* Constructs a new instance of this class with the specified root cause.
*
* @param rootCause root failure cause
*/
public InvalidItemStateException(Throwable rootCause) {
super(rootCause);
}
}