convex.peer.ConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-peer Show documentation
Show all versions of convex-peer Show documentation
Convex Peer implementation and APIs
The newest version!
package convex.peer;
/**
* Message thrown when a failure occurs during peer configuration
*/
@SuppressWarnings("serial")
public class ConfigException extends PeerException {
public ConfigException(String message, Throwable cause) {
super(message, cause);
}
public ConfigException(String message) {
this(message, null);
}
}