Java Code Examples for org.apache.olingo.odata2.api.commons.HttpStatusCodes#NOT_FOUND

The following examples show how to use org.apache.olingo.odata2.api.commons.HttpStatusCodes#NOT_FOUND . 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: ODataNotFoundException.java    From olingo-odata2 with Apache License 2.0 4 votes vote down vote up
public ODataNotFoundException(final MessageReference messageReference) {
  super(messageReference, HttpStatusCodes.NOT_FOUND);
}
 
Example 2
Source File: ODataNotFoundException.java    From olingo-odata2 with Apache License 2.0 4 votes vote down vote up
public ODataNotFoundException(final MessageReference messageReference, final String errorCode) {
  super(messageReference, HttpStatusCodes.NOT_FOUND, errorCode);
}
 
Example 3
Source File: ODataNotFoundException.java    From olingo-odata2 with Apache License 2.0 4 votes vote down vote up
public ODataNotFoundException(final MessageReference messageReference, final Throwable cause) {
  super(messageReference, cause, HttpStatusCodes.NOT_FOUND);
}
 
Example 4
Source File: ODataNotFoundException.java    From olingo-odata2 with Apache License 2.0 4 votes vote down vote up
public ODataNotFoundException(final MessageReference messageReference, final Throwable cause,
    final String errorCode) {
  super(messageReference, cause, HttpStatusCodes.NOT_FOUND, errorCode);
}