blob: 8147e4a2f380064dd206c29606c95cfc90dd20ce [file] [log] [blame]
/**
* Copyright (c) 2019 CEA.
* 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:
* CEA - initial API and implementation and/or initial documentation
*/
package org.eclipse.sensinact.studio.http.messages.snamessage.basic;
import org.eclipse.sensinact.studio.http.messages.snamessage.MsgSensinact;
public abstract class MsgBasic extends MsgSensinact {
public MsgBasic(String type) {
super(type);
}
}