| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ApolloConfigException |
|
| 1.0;1 |
| 1 | package com.ctrip.framework.apollo.exceptions; | |
| 2 | ||
| 3 | /** | |
| 4 | * @author Jason Song(song_s@ctrip.com) | |
| 5 | */ | |
| 6 | public class ApolloConfigException extends RuntimeException { | |
| 7 | public ApolloConfigException(String message) { | |
| 8 | 61 | super(message); |
| 9 | 61 | } |
| 10 | ||
| 11 | public ApolloConfigException(String message, Throwable cause) { | |
| 12 | 38 | super(message, cause); |
| 13 | 38 | } |
| 14 | } |