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

org.noear.solon.web.webdav.WebDavActionException Maven / Gradle / Ivy

There is a newer version: 2.9.1
Show newest version
package org.noear.solon.web.webdav;

public class WebDavActionException extends RuntimeException {
    private int code;

    public WebDavActionException(int code) {
        this.code = code;
    }

    public int getCode() {
        return this.code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy