use of com.sap.conn.jco.AbapException in project iaf by ibissource.
the class SapListener method handleRequest.
public void handleRequest(JCoServerContext jcoServerContext, JCoFunction jcoFunction) throws AbapException, AbapClassException {
try {
log.debug("SapListener.handleRequest()");
handler.processRawMessage(this, jcoFunction, null);
} catch (Throwable t) {
log.warn(getLogPrefix() + "Exception caught and handed to SAP", t);
throw new AbapException("IbisException", t.getMessage());
}
}
Aggregations