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

de.deepamehta.files.FileRepositoryException Maven / Gradle / Ivy

There is a newer version: 4.9.2
Show newest version
package de.deepamehta.files;

import javax.ws.rs.core.Response.Status;



class FileRepositoryException extends Exception {

    Status status;

    FileRepositoryException(String message, Status status) {
        super(message);
        this.status = status;
    }

    Status getStatus() {
        return status;
    }

    int getStatusCode() {
        return status.getStatusCode();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy