1 21 22 package org.apache.derby.impl.tools.ij; 23 24 import java.sql.SQLException ; 25 import java.sql.SQLWarning ; 26 27 34 class ijExceptionResult extends ijResultImpl { 35 36 SQLException except; 37 38 ijExceptionResult(SQLException e) { 39 except = e; 40 } 41 42 public boolean isException() { return true; } 43 public SQLException getException() { return except; } 44 45 public SQLWarning getSQLWarnings() { return null; } 46 public void clearSQLWarnings() { } 47 } 48 | Popular Tags |