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

com.ksyun.api.sdk.exceptions.ServerException Maven / Gradle / Ivy

There is a newer version: 2.1.8
Show newest version
package com.ksyun.api.sdk.exceptions;


public class ServerException extends ClientException {

	private static final long serialVersionUID = -7345371390798165336L;
	
	public ServerException(String errorCode, String errorMessage) {
		super(errorCode, errorMessage);
		this.setErrorType(ErrorType.Server);
	}
	
	public ServerException(String errCode, String errMsg, String requestId) {
		this(errCode, errMsg);
		this.setRequestId(requestId);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy