]> git.basschouten.com Git - openhab-addons.git/blob
22bb0188a9ba3407952feef7deb2052b99d5dd63
[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.opensprinkler.internal.api.exception;
14
15 /**
16  * The {@link NotPermittedApiException} exception is thrown when result from the OpenSprinkler
17  * API is "result" : 48.
18  *
19  * @author Chris Graham - Initial contribution
20  */
21 public class NotPermittedApiException extends GeneralApiException {
22     /**
23      * Serial ID of this error class.
24      */
25     private static final long serialVersionUID = -4873603990171470019L;
26
27     /**
28      * Basic constructor allowing the storing of a single message.
29      *
30      * @param message Descriptive message about the error.
31      */
32     public NotPermittedApiException(String message) {
33         super(message);
34     }
35 }