Index: connector/src/main/org/jboss/resource/adapter/jdbc/WrappedConnection.java =================================================================== --- connector/src/main/org/jboss/resource/adapter/jdbc/WrappedConnection.java (revision 96315) +++ connector/src/main/org/jboss/resource/adapter/jdbc/WrappedConnection.java (working copy) @@ -27,6 +27,7 @@ import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; +import java.sql.SQLFeatureNotSupportedException; import java.sql.SQLWarning; import java.sql.Savepoint; import java.sql.Statement; @@ -860,6 +861,10 @@ protected SQLException checkException(Throwable t) throws SQLException { Throwable result = null; + if (t instanceof AbstractMethodError) + { + t = new SQLFeatureNotSupportedException("Method is not implemented by JDBC driver", t); + } if (mc != null) result = mc.connectionError(t);