]> git.basschouten.com Git - openhab-addons.git/blob
1cf9ec03d9f6182018d721a1a7676e403cf74f3d
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.gardena.internal.exception;
14
15 /**
16  * Exception if a device is not found, this happens if a device is requested and the data from Gardena Smart Home has
17  * not been loaded.
18  *
19  * @author Gerhard Riegler - Initial contribution
20  */
21 public class GardenaDeviceNotFoundException extends GardenaException {
22
23     private static final long serialVersionUID = 2704767320916725490L;
24
25     public GardenaDeviceNotFoundException(String message) {
26         super(message);
27     }
28 }