Klasse ConstraintViolationException

Alle implementierten Schnittstellen:
Serializable, Iterable<Throwable>

public class ConstraintViolationException extends TorqueException
This exception is thrown if a database operation violates a database constraint, e.g. a foreign key constraint, a unique constraint or a not-null constraint.
Version:
$Id: ConstraintViolationException.java 1448414 2013-02-20 21:06:35Z tfischer $
Siehe auch:
  • Konstruktordetails

    • ConstraintViolationException

      public ConstraintViolationException(Throwable nested)
      Constructs a new ConstraintViolationException with specified nested Throwable.
      Parameter:
      nested - the exception or error that caused this exception to be thrown.
    • ConstraintViolationException

      public ConstraintViolationException(String msg, Throwable nested)
      Constructs a new ConstraintViolationException with specified detail message and nested Throwable.
      Parameter:
      msg - the error message.
      nested - the exception or error that caused this exception to be thrown.