5 package net.pterodactylus.fcp.highlevel;
8 * Base exception for high-level client exceptions.
10 * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
12 public class HighLevelException extends Exception {
15 * Creates a new high-level client exception.
17 public HighLevelException() {
22 * Creates a new high-level client exception with the given message.
25 * The message of the exception
27 public HighLevelException(String message) {
32 * Creates a new high-level client exception with the given cause.
35 * The cause of the exception
37 public HighLevelException(Throwable cause) {
42 * Creates a new high-level client exception with the given message and
46 * The message of the exception
48 * The cause of the exception
50 public HighLevelException(String message, Throwable cause) {
51 super(message, cause);