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