"

2013 FRC Java API

"

Uses of Class
java.lang.RuntimeException

Packages that use RuntimeException
com.ni.rio   
com.sun.squawk Provides classes for low level interactions with the Squawk VM. 
com.sun.squawk.debugger   
com.sun.squawk.io.j2me.file   
com.sun.squawk.pragma   
com.sun.squawk.realtime Provides classes for native memory access based on the javax.realtime package. 
com.sun.squawk.security Provides classes for basic signing of binary data. 
com.sun.squawk.util Provides classes for basic utilities sometimes found in JSE (LineReader, unsynchronized Vectors, Math utilities, etc.) 
edu.wpi.first.wpilibj The WPI Robotics library (WPILibJ) is a set of Java classes that interfaces to the hardware in the FRC control system and your robot. 
edu.wpi.first.wpilibj.can   
edu.wpi.first.wpilibj.command   
edu.wpi.first.wpilibj.util Provides classes for utility robotics programming. 
java.lang MID Profile Language Classes included from Java 2 Standard Edition. 
java.util Contains the collection classes, and the date and time facilities. 
 

Uses of RuntimeException in com.ni.rio
 

Subclasses of RuntimeException in com.ni.rio
static class NiRioStatus.FatalStatusException
           
 

Uses of RuntimeException in com.sun.squawk
 

Subclasses of RuntimeException in com.sun.squawk
 class IllegalStoreException
          Thrown to indicate that an attempt has been made to store a pointer from persistent memory into non-persistent memory.
 

Uses of RuntimeException in com.sun.squawk.debugger
 

Subclasses of RuntimeException in com.sun.squawk.debugger
static class JDWPListener.QuitException
          A QuitException is thrown by #waitForCommand and #waitForReply if this listener quits before receving the relevant packet.
 

Uses of RuntimeException in com.sun.squawk.io.j2me.file
 

Subclasses of RuntimeException in com.sun.squawk.io.j2me.file
 class ConnectionClosedException
          This class is defined by the JSR-75 specification PDA Optional Packages for the J2ME™ Platform
 

Uses of RuntimeException in com.sun.squawk.pragma
 

Subclasses of RuntimeException in com.sun.squawk.pragma
 class AllowInlinedPragma
          Allow a method declared to throw this exception to be inlined.
 class ForceInlinedPragma
          Any method declared to throw this exception will be inlined by the translator and cause a LinkageError if it can't be inlined.
 class HostedPragma
          Any method declared to throw this exception is only called from within a hosted environment.
 class InterpreterInvokedPragma
          Any method declared to throw this exception should only be called from the interpreter or from JIT compiled code.
 class NativePragma
          Any method declared to throw this exception will be turned into a native method by the translator.
 class NotInlinedPragma
          Any method declared to throw this exception will never be inlined by the translator.
 class PragmaException
          The root of the pragma exception hierarchy.
 class ReplacementConstructorPragma
          Denotes a method (that must be static) whose code replaces the body of the constructor with the same declared parameter types.
 

Uses of RuntimeException in com.sun.squawk.realtime
 

Subclasses of RuntimeException in com.sun.squawk.realtime
 class OffsetOutOfBoundsException
          Thrown if the constructor of a RawMemoryAccess, or RawMemoryFloatAccess is given an invalid address.
 class SizeOutOfBoundsException
          Thrown if the constructor of a RawMemoryAccess, or RawMemoryFloatAccess is given an invalid size or if an accessor method on one of the above classes would cause access to an invalid address.
 class UnsupportedPhysicalMemoryException
          Thrown when the underlying hardware does not support the type of physical memory requested from an instance of one of the physical memory or raw memory access classes.
 

Uses of RuntimeException in com.sun.squawk.security
 

Subclasses of RuntimeException in com.sun.squawk.security
 class CryptoException
          CryptoException represents a cryptography-related exception.
 

Uses of RuntimeException in com.sun.squawk.util
 

Subclasses of RuntimeException in com.sun.squawk.util
 class NotImplementedYetException
          Thrown to indicate that an attempt has been made to invoke code that is not yet complete.
 class UnexpectedException
           
 

Methods in com.sun.squawk.util that return RuntimeException
static RuntimeException Assert.shouldNotReachHere()
          Asserts that the compiler should never reach this point.
static RuntimeException Assert.shouldNotReachHere(String msg)
          Asserts that the compiler should never reach this point.
static RuntimeException Assert.shouldNotReachHere(String filename, int lineno)
           
static RuntimeException Assert.shouldNotReachHere(String msg, String filename, int lineno)
           
static RuntimeException Assert.shouldNotReachHereFatal()
          Asserts that the compiler should never reach this point.
static RuntimeException Assert.shouldNotReachHereFatal(String msg)
          Asserts that the compiler should never reach this point.
static RuntimeException Assert.shouldNotReachHereFatal(String filename, int lineno)
           
static RuntimeException Assert.shouldNotReachHereFatal(String msg, String filename, int lineno)
           
 

Uses of RuntimeException in edu.wpi.first.wpilibj
 

Subclasses of RuntimeException in edu.wpi.first.wpilibj
 class AnalogTrigger.AnalogTriggerException
          Exceptions dealing with improper operation of the Analog trigger
 class AnalogTriggerOutput.AnalogTriggerOutputException
          Exceptions dealing with improper operation of the Analog trigger output
 class HiTechnicColorSensor.ColorSensorException
          An exception dealing with connecting to and communicating with the HiTechnicCompass
 class HiTechnicCompass.CompassException
          An exception dealing with connecting to and communicating with the HiTechnicCompass
static class Preferences.ImproperPreferenceKeyException
          Should be thrown if a string can not be used as a key in the preferences file.
static class Preferences.IncompatibleTypeException
          This exception is thrown if the a value requested cannot be converted to the requested type.
 class Relay.InvalidValueException
          This class represents errors in trying to set relay values contradictory to the direction to which the relay is set.
static class SPIDevice.BadSPIConfigException
           
 

Uses of RuntimeException in edu.wpi.first.wpilibj.can
 

Subclasses of RuntimeException in edu.wpi.first.wpilibj.can
 class CANInvalidBufferException
          Exception indicating that a CAN driver library entry-point was passed an invalid buffer.
 class CANJaguarVersionException
          Exception indicating that the CAN driver layer has not been initialized.
 class CANMessageNotAllowedException
          Exception indicating that the Jaguar CAN Driver layer refused to send a restricted message ID to the CAN bus.
 class CANNotInitializedException
          Exception indicating that the CAN driver layer has not been initialized.
 

Uses of RuntimeException in edu.wpi.first.wpilibj.command
 

Subclasses of RuntimeException in edu.wpi.first.wpilibj.command
 class IllegalUseOfCommandException
          This exception will be thrown if a command is used illegally.
 

Uses of RuntimeException in edu.wpi.first.wpilibj.util
 

Subclasses of RuntimeException in edu.wpi.first.wpilibj.util
 class AllocationException
          Exception indicating that the resource is already allocated
 class BoundaryException
          This exception represents an error in which a lower limit was set as higher than an upper limit.
 class UncleanStatusException
          Exception for bad status codes from the chip object
 

Uses of RuntimeException in java.lang
 

Subclasses of RuntimeException in java.lang
 class ArithmeticException
          Thrown when an exceptional arithmetic condition has occurred.
 class ArrayIndexOutOfBoundsException
          Thrown to indicate that an array has been accessed with an illegal index.
 class ArrayStoreException
          Thrown to indicate that an attempt has been made to store the wrong type of object into an array of objects.
 class ClassCastException
          Thrown to indicate that the code has attempted to cast an object to a subclass of which it is not an instance.
 class IllegalArgumentException
          Thrown to indicate that a method has been passed an illegal or inappropriate argument.
 class IllegalMonitorStateException
          Thrown to indicate that a thread has attempted to wait on an object's monitor or to notify other threads waiting on an object's monitor without owning the specified monitor.
 class IllegalStateException
          Signals that a method has been invoked at an illegal or inappropriate time.
 class IllegalThreadStateException
          Thrown to indicate that a thread is not in an appropriate state for the requested operation.
 class IndexOutOfBoundsException
          Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range.
 class NegativeArraySizeException
          Thrown if an application tries to create an array with negative size.
 class NullPointerException
          Thrown when an application attempts to use null in a case where an object is required.
 class NumberFormatException
          Thrown to indicate that the application has attempted to convert a string to one of the numeric types, but that the string does not have the appropriate format.
 class SecurityException
          Thrown by the system to indicate a security violation.
 class StringIndexOutOfBoundsException
          Thrown by the charAt method in class String and by other String methods to indicate that an index is either negative or greater than or equal to the size of the string.
 

Uses of RuntimeException in java.util
 

Subclasses of RuntimeException in java.util
 class EmptyStackException
          Thrown by methods in the Stack class to indicate that the stack is empty.
 class NoSuchElementException
          Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration.
 


"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"