[wpilibj] Suppress serialVersionUID warnings (#2618)

These are all classes (e.g. Exception classes) which will never be serialized.
This commit is contained in:
Peter Johnson
2020-07-26 17:06:17 -07:00
committed by GitHub
parent 0fe2319dfc
commit 5cf4c16f5b
12 changed files with 21 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2008-2019 FIRST. All Rights Reserved. */
/* Copyright (c) 2008-2020 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
@@ -18,6 +18,7 @@ package edu.wpi.first.wpilibj.command;
* it is put into multiple command groups, it is started from outside its command group, or it adds
* a new child. </p>
*/
@SuppressWarnings("serial")
public class IllegalUseOfCommandException extends RuntimeException {
/**
* Instantiates an {@link IllegalUseOfCommandException}.