com.healthy.common.qcloud.cos.exception.QcloudCosException Maven / Gradle / Ivy
package com.healthy.common.qcloud.cos.exception;
/**
* QcloudCosException
*
* @author xiaomingzhang
*/
public class QcloudCosException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Constructs a new runtime exception with {@code null} as its detail message. The
* cause is not initialized, and may subsequently be initialized by a call to
* {@link #initCause}.
*/
public QcloudCosException() {
super();
}
/**
* Constructs a new runtime exception with the specified detail message. The cause is
* not initialized, and may subsequently be initialized by a call to
* {@link #initCause}.
* @param message the detail message. The detail message is saved for later retrieval
* by the {@link #getMessage()} method.
*/
public QcloudCosException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy