001package jmri.jmrix.rfid.merg.concentrator;
002
003import jmri.jmrix.rfid.RfidMessage;
004
005/**
006 *
007 * <hr>
008 * This file is part of JMRI.
009 * <p>
010 * JMRI is free software; you can redistribute it and/or modify it under the
011 * terms of version 2 of the GNU General Public License as published by the Free
012 * Software Foundation. See the "COPYING" file for a copy of this license.
013 * <p>
014 * JMRI is distributed in the hope that it will be useful, but WITHOUT ANY
015 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
016 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
017 *
018 * @author Matthew Harris Copyright (C) 2011
019 */
020public class ConcentratorMessage extends RfidMessage {
021
022    public ConcentratorMessage(int l) {
023        super(l);
024    }
025
026    public ConcentratorMessage(String m, int l) {
027        super(m, l);
028    }
029
030    @Override
031    public String toMonitorString() {
032        throw new UnsupportedOperationException("Not supported yet.");
033    }
034
035}