2 * Copyright (c) 2010-2024 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.insteon.internal.message;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * Exception to be thrown if there is an error processing a field, for
19 * example type mismatch, out of bounds etc.
21 * @author Daniel Pfrommer - Initial contribution
22 * @author Rob Nielsen - Port to openHAB 2 insteon binding
25 public class FieldException extends Exception {
26 private static final long serialVersionUID = -4749311173073727318L;
28 public FieldException() {
32 public FieldException(String m) {
36 public FieldException(String m, Throwable cause) {
40 public FieldException(Throwable cause) {