001/*----------------------------------------------------------------------------*/
002/* Copyright (c) FIRST 2017-2018. 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.networktables;
009
010import java.io.IOException;
011
012/**
013 * An exception thrown when persistent load/save fails in a {@link NetworkTable}
014 *
015 */
016public final class PersistentException extends IOException {
017  public static final long serialVersionUID = 0;
018
019  /**
020   * @param message The error message
021   */
022  public PersistentException(String message) {
023    super(message);
024  }
025
026}