001package edu.wpi.first.wpilibj.networktables2.connection; 002 003import java.io.*; 004 005/** 006 * An exception throw when a NetworkTableNode receives a bad message 007 * 008 * @author Mitchell 009 * 010 */ 011public class BadMessageException extends IOException { 012 /** 013 * Create a new exception 014 * @param message a message 015 */ 016 public BadMessageException(final String message) { 017 super(message); 018 } 019}