@ManagedAttribute(description = "Does this error handler support transactions")
public boolean isSupportTransactions() {
if (errorHandler instanceof ErrorHandlerSupport) {
ErrorHandlerSupport ehs = (ErrorHandlerSupport) errorHandler;
return ehs.supportTransacted();
} else {
return false;
}
}