001    /*----------------------------------------------------------------------------*/
002    /* Copyright (c) FIRST 2008-2012. All Rights Reserved.                        */
003    /* Open Source Software - may be modified and shared by FRC teams. The code   */
004    /* must be accompanied by the FIRST BSD license file in the root directory of */
005    /* the project.                                                               */
006    /*----------------------------------------------------------------------------*/
007    
008    package edu.wpi.first.wpilibj.can;
009    
010    import java.io.IOException;
011    
012    /**
013     * Exception indicating that the CAN device did not respond
014     * within the timeout period specified.
015     */
016    public class CANTimeoutException extends IOException {
017        public CANTimeoutException() {
018            super();
019        }
020    }