11031104110511061107110811091110
@Override public HBaseAdmin getAdmin() throws SQLException { try { return new HBaseAdmin(config); } catch (IOException e) { throw new PhoenixIOException(e); } }
102103104105106107108
public static SQLException parseServerException(Throwable t) { SQLException e = parseServerExceptionOrNull(t); if (e != null) { return e; } return new PhoenixIOException(t); }