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

com.upyun.UpAPIException Maven / Gradle / Ivy

package com.upyun;

public class UpAPIException extends UpException {
    public int statusCode;

    public UpAPIException(int statusCode, String msg) {
        super("api error code:" + statusCode + "; msg:" + msg);
        this.statusCode = statusCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy