Package edu.wpi.first.hal.can
Class CANExceptionFactory
java.lang.Object
edu.wpi.first.hal.can.CANExceptionFactory
Checks the status of a CAN message and throws an exception of the appropriate type if necessary.
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidcheckStatus(int status, int messageID) Checks the status of a CAN message with the given message ID.
-
Method Details
-
checkStatus
Checks the status of a CAN message with the given message ID.- Parameters:
status- The CAN status.messageID- The CAN message ID.- Throws:
CANInvalidBufferException- if the buffer is invalid.CANMessageNotAllowedException- if the message isn't allowed.CANNotInitializedException- if the CAN bus isn't initialized.UncleanStatusException- if the status code passed in reports an error.
-