001package edu.wpi.first.wpilibj.networktables; 002 003import edu.wpi.first.wpilibj.tables.TableKeyNotDefinedException; 004 005/** 006 * An exception throw when the lookup a a key-value fails in a {@link NetworkTable} 007 * 008 * @deprecated to provide backwards compatability for new api 009 * 010 * @author Mitchell 011 * 012 */ 013@Deprecated 014public class NetworkTableKeyNotDefined extends TableKeyNotDefinedException { 015 016 /** 017 * @param key the key that was not defined in the table 018 */ 019 public NetworkTableKeyNotDefined(String key) { 020 super(key); 021 } 022 023}