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