Package com.thethriftybot.interfaces
Interface DriverStationInterface
- All Known Implementing Classes:
DriverStationWrapper.defaultDriversStation
public interface DriverStationInterface
Interface for DriverStation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidreportError(String string, boolean printTrace) Reports an error.voidreportError(String string, StackTraceElement[] stackTrace) Reports an error.voidreportWarning(String string, boolean printTrace) Reports a warning.voidreportWarning(String string, StackTraceElement[] stackTrace) Reports a warning.
-
Method Details
-
reportError
Reports an error.- Parameters:
string- The error message.printTrace- Whether to print the stack trace.
-
reportError
Reports an error.- Parameters:
string- The error message.stackTrace- The stack trace.
-
reportWarning
Reports a warning.- Parameters:
string- The warning message.printTrace- Whether to print the stack trace.
-
reportWarning
Reports a warning.- Parameters:
string- The warning message.stackTrace- The stack trace.
-