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

com.aliyun.auth.credentials.exception.CredentialException Maven / Gradle / Ivy

The newest version!
package com.aliyun.auth.credentials.exception;

import java.io.Serializable;

public class CredentialException extends RuntimeException implements Serializable {

    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