com.ctrip.framework.apollo.exceptions.ApolloConfigException Maven / Gradle / Ivy
The newest version!
package com.ctrip.framework.apollo.exceptions;
/**
* @author Jason Song([email protected])
*/
public class ApolloConfigException extends RuntimeException {
public ApolloConfigException(String message) {
super(message);
}
public ApolloConfigException(String message, Throwable cause) {
super(message, cause);
}
}