blob: b51c7ee1fd700bce00626d69505bb86e5a2e920a [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* 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
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.protocol.ssdp.exception;
/**
* Exception used when a parameter is not in the ranges described in the specification
*/
public class InvalidParameterException extends Exception {
public InvalidParameterException() {
}
public InvalidParameterException(String message) {
super(message);
}
}