All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.webflow.conversation.ConversationLockException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.springframework.webflow.conversation;

/**
 * An exception occurred within the conversation locking system.
 * 
 * @author Keith Donald
 */
public abstract class ConversationLockException extends ConversationException {

	/**
	 * Creates a new lock exception.
	 * @param msg the Exception message
	 */
	public ConversationLockException(String msg) {
		super(msg);
	}

	/**
	 * Creates a new lock exception.
	 * @param msg the Exception message
	 * @param cause the root cause of this Exception
	 */
	public ConversationLockException(String msg, Throwable cause) {
		super(msg, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy