001package edu.wpi.first.wpilibj.tables;
002
003import java.util.NoSuchElementException;
004
005/**
006 * An exception throw when the lookup a a key-value fails in a {@link ITable}
007 * 
008 * @author Mitchell
009 *
010 */
011public class TableKeyNotDefinedException extends NoSuchElementException {
012
013        /**
014         * @param key the key that was not defined in the table
015         */
016        public TableKeyNotDefinedException(String key) {
017                super("Unknown Table Key: "+key);
018        }
019
020}