Package org.hyperonline.hyperlib.oi
Class BadOIMapException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hyperonline.hyperlib.oi.BadOIMapException
-
- All Implemented Interfaces:
java.io.Serializable
public class BadOIMapException extends java.lang.Exception
This exception is thrown when the class passed as a map toOI
is invalid. This should only be thrown inside the RobotInspector program. If an invalid configuration is detected at runtime, we report an error to the dashboard and ignore the invalid part.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BadOIMapException()
BadOIMapException(java.lang.String msg)
BadOIMapException(java.lang.String msg, java.lang.Throwable cause)
BadOIMapException(java.lang.Throwable cause)
-
-
-
Constructor Detail
-
BadOIMapException
public BadOIMapException()
- See Also:
Exception()
-
BadOIMapException
public BadOIMapException(java.lang.String msg)
- Parameters:
msg
- A message string describing the exception- See Also:
Exception(String)
-
BadOIMapException
public BadOIMapException(java.lang.Throwable cause)
- Parameters:
cause
- The exception which caused this one- See Also:
Exception(Throwable)
-
BadOIMapException
public BadOIMapException(java.lang.String msg, java.lang.Throwable cause)
- Parameters:
msg
- A message string describing the exceptioncause
- The exception which caused this one- See Also:
Exception(String, Throwable)
-
-