2 * Copyright (c) 2010-2022 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.pushover.internal.connection;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link PushoverConfigurationException} is a configuration exception for the connections to Pushover Messages API.
20 * @author Christoph Weitkamp - Initial contribution
23 public class PushoverConfigurationException extends IllegalArgumentException {
25 private static final long serialVersionUID = 1L;
28 * Constructs a new exception with null as its detail message.
30 public PushoverConfigurationException() {
35 * Constructs a new exception with the specified detail message.
37 * @param message Detail message
39 public PushoverConfigurationException(String message) {
44 * Constructs a new exception with the specified cause.
46 * @param cause The cause
48 public PushoverConfigurationException(Throwable cause) {
53 * Constructs a new exception with the specified detail message and cause.
55 * @param message Detail message
56 * @param cause The cause
58 public PushoverConfigurationException(String message, Throwable cause) {
59 super(message, cause);