Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wpilibj] Remove unused AnalogTriggerException #6142

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions wpilibj/src/main/java/edu/wpi/first/wpilibj/AnalogTrigger.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,6 @@

/** Class for creating and configuring Analog Triggers. */
public class AnalogTrigger implements Sendable, AutoCloseable {
/** Exceptions dealing with improper operation of the Analog trigger. */
public static class AnalogTriggerException extends RuntimeException {
/**
* Create a new exception with the given message.
*
* @param message the message to pass with the exception
*/
public AnalogTriggerException(String message) {
super(message);
}
}

/** Where the analog trigger is attached. */
protected int m_port;

Expand Down