001/*----------------------------------------------------------------------------*/
002/* Copyright (c) FIRST 2016. 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
008package edu.wpi.cscore;
009
010/// An exception raised by the camera server.
011public class VideoException extends RuntimeException {
012  public VideoException(String msg) {
013    super(msg);
014  }
015
016  @Override
017  public String toString() {
018    return "VideoException [" + super.toString() + "]";
019  }
020}