Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

42          * The <code>reason</code>, <code>SQLState</code> are initialized
57 * with a given <code>reason</code>. The <code>SQLState</code>
65 * @param reason a description of the exception
68 public SQLIntegrityConstraintViolationException(String reason) {
69 super(reason);
74 * object with a given <code>reason</code> and <code>SQLState</code>.
81 * @param reason a description of the exception
85 public SQLIntegrityConstraintViolationException(String reason, String SQLState) {
86 super(reason,SQLState);
91 * with a given <code>reason</code>, <code>SQLState</code> and
98 * @param reason a description of the exception
103 public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode) {
104 super(reason,SQLState,vendorCode);
112 * The <code>reason</code> is initialized to <code>null</code> if
116 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
127 * <code>reason</code> and <code>cause</code>.
131 * @param reason a description of the exception.
136 public SQLIntegrityConstraintViolationException(String reason, Throwable cause) {
137 super(reason,cause);
143 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
146 * @param reason a description of the exception.
148 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
152 public SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause) {
153 super(reason,SQLState, cause);
159 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
162 * @param reason a description of the exception
169 public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause) {
170 super(reason,SQLState,vendorCode,cause);