blob: 2a5e7a60b0c2934eb485d47998bcbd3556a6361a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014-2018 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* BAREAU Cyrille <cyrille.bareau@orange.com>
* BONNARDEL Gregory <gbonnardel.ext@orange.com>
*******************************************************************************/
package org.eclipse.om2m.hue.api.types;
/**
* <p>
* used to indicate that the Philips Hue Gateway is not reacheable <p>
*/
public class UnknownHueGatewayException extends Exception{
private static final long serialVersionUID = 1L;
public UnknownHueGatewayException(final String msg){
super("UnknownHueGatewayException. The gateway's IP address has changed? \n" + msg);
}
public UnknownHueGatewayException(final String msg, final Exception e) {
super("UnknownHueGatewayException. The gateway's IP address has changed? \n" + msg, e);
}
}