All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openl.rules.rest.exception.ConflictException Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.rest.exception;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(code = HttpStatus.CONFLICT)
public class ConflictException extends RestRuntimeException {

    public ConflictException(String code) {
        super(code);
    }

    public ConflictException(String code, Object... args) {
        super(code, args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy