Java Code Examples for org.apache.olingo.odata2.api.processor.ODataErrorCallback#handleError()

The following examples show how to use org.apache.olingo.odata2.api.processor.ODataErrorCallback#handleError() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ODataExceptionWrapper.java    From olingo-odata2 with Apache License 2.0 5 votes vote down vote up
private ODataResponse handleErrorCallback(final ODataErrorCallback callback) throws EntityProviderException {
  ODataResponse oDataResponse;
  try {
    oDataResponse = callback.handleError(errorContext);
  } catch (ODataApplicationException e) {
    fillErrorContext(e);
    enhanceContextWithApplicationException(e);
    oDataResponse = new ProviderFacadeImpl().writeErrorDocument(errorContext);
  }
  return oDataResponse;
}
 
Example 2
Source File: ODataExceptionWrapper.java    From olingo-odata2 with Apache License 2.0 5 votes vote down vote up
private ODataResponse handleErrorCallback(final ODataErrorCallback callback) throws EntityProviderException {
  ODataResponse oDataResponse;
  try {
    oDataResponse = callback.handleError(errorContext);
  } catch (ODataApplicationException e) {
    fillErrorContext(e);
    enhanceContextWithApplicationException(e);
    oDataResponse = new ProviderFacadeImpl().writeErrorDocument(errorContext);
  }
  return oDataResponse;
}
 
Example 3
Source File: ODataExceptionMapperImpl.java    From olingo-odata2 with Apache License 2.0 5 votes vote down vote up
private ODataResponse executeErrorCallback(final ODataErrorContext errorContext, final ODataErrorCallback callback) {
  ODataResponse oDataResponse;
  try {
    oDataResponse = callback.handleError(errorContext);
  } catch (ODataApplicationException e) {
    oDataResponse = handleException(e);
  }
  return oDataResponse;
}