
com.aliyun.credentials.exception.CredentialException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of credentials-java Show documentation
Show all versions of credentials-java Show documentation
Alibaba Cloud Credentials for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
https://www.aliyun.com
package com.aliyun.credentials.exception;
public class CredentialException extends RuntimeException {
private static final long serialVersionUID = 634786425123290588L;
public CredentialException(String message) {
super(message);
}
public CredentialException(String message, Throwable cause) {
super(message, cause);
}
@Override
public String getMessage() {
return super.getMessage();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy