org.hibernate.exception
Class ConstraintViolationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hibernate.HibernateException
org.hibernate.JDBCException
org.hibernate.exception.ConstraintViolationException
- All Implemented Interfaces:
- java.io.Serializable
public class ConstraintViolationException
- extends JDBCException
Implementation of JDBCException indicating that the requested DML operation
resulted in a violation of a defined integrity constraint.
- Author:
- Steve Ebersole
- See Also:
- Serialized Form
Method Summary |
java.lang.String |
getConstraintName()
Returns the name of the violated constraint, if known. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ConstraintViolationException
public ConstraintViolationException(java.lang.String message,
java.sql.SQLException root,
java.lang.String constraintName)
ConstraintViolationException
public ConstraintViolationException(java.lang.String message,
java.sql.SQLException root,
java.lang.String sql,
java.lang.String constraintName)
getConstraintName
public java.lang.String getConstraintName()
- Returns the name of the violated constraint, if known.
- Returns:
- The name of the violated constraint, or null if not known.
Copyright © 2009 Hibernate.org. All Rights Reserved.