001/*----------------------------------------------------------------------------*/
002/* Copyright (c) 2008-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.first.wpilibj.util;
009
010/**
011 * Exception indicating that an error has occured with a HAL Handle.
012 */
013public class HalHandleException extends RuntimeException {
014  /**
015   * Create a new HalHandleException.
016   *
017   * @param msg the message to attach to the exception
018   */
019  public HalHandleException(String msg) {
020    super(msg);
021  }
022}