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.camera;
009    
010    /**
011     * An exception representing a problem with communicating with the camera.
012     * @author dtjones
013     */
014    public class AxisCameraException extends Exception{
015        /**
016         * Create a new AxisCameraException.
017         * @param msg The message to pass with the AxisCameraException.
018         */
019        public AxisCameraException(String msg) {
020            super(msg);
021        }
022    }