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

org.openl.rules.rest.exception.NotFoundException 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.NOT_FOUND)
public class NotFoundException extends RestRuntimeException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy