nonuniqueobjectexception.java
来自「用Java实现的23个常用设计模式源代码」· Java 代码 · 共 42 行
JAVA
42 行
//$Id: NonUniqueObjectException.java,v 1.1.2.1 2003/11/27 09:30:48 oneovthafew Exp $
package net.sf.hibernate;
import java.io.Serializable;
/**
* This exception is thrown when an operation would
* break session-scoped identity. This occurs if the
* user tries to associate two different instances of
* the same Java class with a particular identifier,
* in the scope of a single <tt>Session</tt>.
*
* @author Gavin King
*/
public class NonUniqueObjectException extends HibernateException {
private final Serializable identifier;
private final Class clazz;
public NonUniqueObjectException(String message, Serializable id, Class clazz) {
super(message);
this.clazz = clazz;
this.identifier = id;
}
public NonUniqueObjectException(Serializable id, Class clazz) {
this("a different object with the same identifier value was already associated with the session", id, clazz);
}
public Serializable getIdentifier() {
return identifier;
}
public String getMessage() {
return super.getMessage() + ": " + identifier + ", of class: " + clazz.getName();
}
public Class getPersistentClass() {
return clazz;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?