2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.pushsafer.internal.connection;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link PushsaferConfigurationException} is a configuration exception for the connections to Pushsafer Messages
21 * @author Kevin Siml - Initial contribution, forked from Christoph Weitkamp
24 public class PushsaferConfigurationException extends IllegalArgumentException {
26 private static final long serialVersionUID = 1L;
29 * Constructs a new exception with null as its detail message.
31 public PushsaferConfigurationException() {
36 * Constructs a new exception with the specified detail message.
38 * @param message Detail message
40 public PushsaferConfigurationException(String message) {
45 * Constructs a new exception with the specified cause.
47 * @param cause The cause
49 public PushsaferConfigurationException(Throwable cause) {
54 * Constructs a new exception with the specified detail message and cause.
56 * @param message Detail message
57 * @param cause The cause
59 public PushsaferConfigurationException(String message, Throwable cause) {
60 super(message, cause);