Java Code Examples for io.undertow.util.StatusCodes#CONFLICT
The following examples show how to use
io.undertow.util.StatusCodes#CONFLICT .
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: BaseCahHandler.java From PYX-Reloaded with Apache License 2.0 | 4 votes |
public CahException(Consts.ErrorCode code) { super(StatusCodes.CONFLICT); this.code = code; this.data = null; }
Example 2
Source File: BaseCahHandler.java From PYX-Reloaded with Apache License 2.0 | 4 votes |
public CahException(Consts.ErrorCode code, Throwable cause) { super(StatusCodes.CONFLICT, cause); this.code = code; this.data = null; }
Example 3
Source File: BaseCahHandler.java From PYX-Reloaded with Apache License 2.0 | 4 votes |
public CahException(Consts.ErrorCode code, JsonWrapper data) { super(StatusCodes.CONFLICT); this.code = code; this.data = data; }