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.networktables;
006
007import java.io.IOException;
008
009/** An exception thrown when persistent load/save fails in a {@link NetworkTable}. */
010public final class PersistentException extends IOException {
011  public static final long serialVersionUID = 0;
012
013  public PersistentException(String message) {
014    super(message);
015  }
016}