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

org.rostore.service.NotFoundException Maven / Gradle / Ivy

The newest version!
package org.rostore.service;

import jakarta.ws.rs.core.Response;

public class NotFoundException extends RoStoreServiceException {
    public NotFoundException(final String message) {
        super(Response.Status.NOT_FOUND, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy