Home | History | Annotate | Download | only in sql

Lines Matching refs:reason

49      *  with a given <code>reason</code>, <code>SQLState</code>  and
56 * @param reason a description of the warning
60 public SQLWarning(String reason, String SQLState, int vendorCode) {
61 super(reason, SQLState, vendorCode);
62 DriverManager.println("SQLWarning: reason(" + reason +
70 * with a given <code>reason</code> and <code>SQLState</code>.
77 * @param reason a description of the warning
80 public SQLWarning(String reason, String SQLState) {
81 super(reason, SQLState);
82 DriverManager.println("SQLWarning: reason(" + reason +
88 * with a given <code>reason</code>. The <code>SQLState</code>
96 * @param reason a description of the warning
98 public SQLWarning(String reason) {
99 super(reason);
100 DriverManager.println("SQLWarning: reason(" + reason + ")");
105 * The <code>reason</code>, <code>SQLState</code> are initialized
123 * The <code>reason</code> is initialized to <code>null</code> if
127 * @param cause the underlying reason for this <code>SQLWarning</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
138 * <code>reason</code> and <code>cause</code>.
142 * @param reason a description of the warning
143 * @param cause the underlying reason for this <code>SQLWarning</code>
147 public SQLWarning(String reason, Throwable cause) {
148 super(reason,cause);
149 DriverManager.println("SQLWarning : reason("+ reason + ")");
155 * <code>reason</code>, <code>SQLState</code> and <code>cause</code>.
158 * @param reason a description of the warning
160 * @param cause the underlying reason for this <code>SQLWarning</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
163 public SQLWarning(String reason, String SQLState, Throwable cause) {
164 super(reason,SQLState,cause);
165 DriverManager.println("SQLWarning: reason(" + reason +
172 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code>
175 * @param reason a description of the warning
178 * @param cause the underlying reason for this <code>SQLWarning</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
181 public SQLWarning(String reason, String SQLState, int vendorCode, Throwable cause) {
182 super(reason,SQLState,vendorCode,cause);
183 DriverManager.println("SQLWarning: reason(" + reason +