001// Copyright (c) FIRST and other WPILib contributors.
002// Open Source Software; you can modify and/or share it under the terms of
003// the WPILib BSD license file in the root directory of this project.
004
005package edu.wpi.first.cscore;
006
007/** An exception raised by the camera server. */
008public class VideoException extends RuntimeException {
009  private static final long serialVersionUID = -9155939328084105145L;
010
011  public VideoException(String msg) {
012    super(msg);
013  }
014
015  @Override
016  public String toString() {
017    return "VideoException [" + super.toString() + "]";
018  }
019}