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

org.hibernate.ObjectDeletedException Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
//$Id: ObjectDeletedException.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate;

import java.io.Serializable;

/**
 * Thrown when the user tries to do something illegal with a deleted
 * object.
 *
 * @author Gavin King
 */
public class ObjectDeletedException extends UnresolvableObjectException {

	public ObjectDeletedException(String message, Serializable identifier, String clazz) {
		super(message, identifier, clazz);
	}

}











© 2015 - 2024 Weber Informatics LLC | Privacy Policy