Package edu.wpi.first.hal.can
Class CANInvalidBufferException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.wpi.first.hal.can.CANInvalidBufferException
- All Implemented Interfaces:
Serializable
Exception indicating that a CAN driver library entry-point was passed an invalid buffer.
Typically, this is due to a buffer being too small to include the needed safety token.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new CANInvalidBufferException with no message.Constructs a new CANInvalidBufferException 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
-
CANInvalidBufferException
public CANInvalidBufferException()Constructs a new CANInvalidBufferException with no message. -
CANInvalidBufferException
Constructs a new CANInvalidBufferException withmsg
as its detail message.- Parameters:
msg
- the message
-