/** * Copyright (c) 2010-2016 by the respective copyright holders. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.openhab.binding.rwesmarthome.internal.communicator.exceptions; /** * Exception if session has expired. * * @author ollie-dev */ public class RWESmarthomeSessionExpiredException extends SHFunctionalException { /** * */ private static final long serialVersionUID = -2799402410863391169L; /** * Constructor */ public RWESmarthomeSessionExpiredException() { super(); } /** * Constructor with message and throwable. * * @param detailMessage * @param throwable */ public RWESmarthomeSessionExpiredException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } /** * Constructor with message. * * @param detailMessage */ public RWESmarthomeSessionExpiredException(String detailMessage) { super(detailMessage); } /** * Constructor with throwable. * * @param throwable */ public RWESmarthomeSessionExpiredException(Throwable throwable) { super(throwable); } }