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

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy