001package jmri; 002 003/** 004 * Thrown to indicate that a Timebase can't handle a particular rate setting 005 * that's been requested. 006 * 007 * @author Bob Jacobsen Copyright (C) 2004 008 */ 009public class TimebaseRateException extends JmriException { 010 011 public TimebaseRateException(String s) { 012 super(s); 013 } 014 015 public TimebaseRateException() { 016 } 017 018}