001package jmri;
002
003/**
004 * Specific Exception class used by Audio objects.
005 *
006 * <hr>
007 * This file is part of JMRI.
008 * <p>
009 * JMRI is free software; you can redistribute it and/or modify it under the
010 * terms of version 2 of the GNU General Public License as published by the Free
011 * Software Foundation. See the "COPYING" file for a copy of this license.
012 * <p>
013 * JMRI is distributed in the hope that it will be useful, but WITHOUT ANY
014 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
015 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
016 *
017 * @author Matthew Harris copyright (c) 2009
018 */
019public class AudioException extends JmriException {
020
021    /**
022     * Create new AudioException with a message
023     *
024     * @param s message for this exception
025     */
026    public AudioException(String s) {
027        super(s);
028    }
029
030    /**
031     * Create new blank AudioException
032     */
033    public AudioException() {
034
035    }
036}