Package edu.wpi.first.hal.can
Class CANNotInitializedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.wpi.first.hal.can.CANNotInitializedException
- All Implemented Interfaces:
Serializable
Exception indicating that the CAN driver layer has not been initialized. This happens when an
entry-point is called before a CAN driver plugin has been installed.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new CANNotInitializedException with no message.Constructs a new CANNotInitializedException withmsg
as its detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CANNotInitializedException
public CANNotInitializedException()Constructs a new CANNotInitializedException with no message. -
CANNotInitializedException
Constructs a new CANNotInitializedException withmsg
as its detail message.- Parameters:
msg
- the message
-