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