]> git.basschouten.com Git - openhab-addons.git/blob
16267ac6290d630d3fb2185a44e0fb2fab7757a9
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.digitalstrom.internal.lib.serverconnection.simpledsrequestbuilder.constants;
14
15 /**
16  * The {@link ExeptionConstants} contains the {@link SimpleRequestBuilder} exception strings.
17  *
18  * @author Michael Ochel - Initial contribution
19  * @author Matthias Siegele - Initial contribution
20  */
21 public class ExeptionConstants {
22     public static final String NO_CLASS_ADDED = "No class added! Please add a class first!";
23     public static final String CLASS_ALREADY_ADDED = "A class is already added! You can only add one class!";
24     public static final String FUNCTION_ALLREADY_ADDED = "A function is already added! You can only add one function!";
25     public static final String NO_FUNCTION = "No function added! Please add a function!";
26 }