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.hal.can;
006
007/**
008 * Exception indicating that a can message is not available from Network Communications. This
009 * usually just means we already have the most recent value cached locally.
010 */
011public class CANMessageNotFoundException extends RuntimeException {
012  private static final long serialVersionUID = 8249780881928189975L;
013
014  public CANMessageNotFoundException() {
015    super();
016  }
017
018  public CANMessageNotFoundException(String msg) {
019    super(msg);
020  }
021}