Package | Description |
---|---|
java.io |
Input/Output support
|
java.lang |
Core Java classes
|
java.net |
Network communication through TCP and UDP sockets or URLs.
|
java.text |
Provides classes and interfaces for handling text, dates, numbers, and messages
in a manner independent of natural languages.
|
java.util |
Utilities
|
tijos.framework.networkcenter.mqtt |
MQTT3.1.1 client
|
tijos.framework.util.json |
JSON-java suppport
|
Modifier and Type | Class and Description |
---|---|
class |
EOFException
This exception is thrown when the end of the file or stream was
encountered unexpectedly.
|
class |
FileNotFoundException |
class |
InterruptedIOException
This exception is thrown when a in process I/O operation is interrupted
for some reason.
|
class |
IOException
This exception is thrown to indicate an I/O problem of some sort
occurred.
|
class |
UnsupportedEncodingException
This exception is thrown when the requested character encoding is
not supported.
|
class |
UTFDataFormatException
When reading a UTF string from an input stream, this exception is thrown
to indicate that the data read is invalid.
|
Modifier and Type | Class and Description |
---|---|
class |
ArithmeticException |
class |
ArrayIndexOutOfBoundsException |
class |
ArrayStoreException |
class |
AssertionError |
class |
ClassCastException |
class |
ClassNotFoundException |
class |
CloneNotSupportedException |
class |
Error |
class |
Exception |
class |
IllegalArgumentException |
class |
IllegalMonitorStateException |
class |
IllegalStateException |
class |
IndexOutOfBoundsException |
class |
InternalError |
class |
InterruptedException |
class |
NegativeArraySizeException |
class |
NoClassDefFoundError |
class |
NoSuchFieldError |
class |
NoSuchMethodError |
class |
NullPointerException |
class |
NumberFormatException |
class |
OutOfMemoryError |
class |
RuntimeException |
class |
StackOverflowError |
class |
StringIndexOutOfBoundsException |
class |
ThreadDeath
This is a special Error, which isn't reported by the
VM if uncaught.
|
class |
UnsupportedOperationException |
class |
VirtualMachineError |
Modifier and Type | Method and Description |
---|---|
Throwable |
Throwable.fillInStackTrace()
Capture a stack trace.
|
Throwable |
Throwable.getCause()
Returns the cause of this throwable or null if the cause is nonexistent or unknown.
|
Throwable |
Throwable.initCause(Throwable cause)
Initializes the cause of this throwable to the specified value.
|
Modifier and Type | Method and Description |
---|---|
void |
Throwable.addSuppressed(Throwable t)
Currently unimplemented.
|
Throwable |
Throwable.initCause(Throwable cause)
Initializes the cause of this throwable to the specified value.
|
void |
Thread.UncaughtExceptionHandler.uncaughtException(Thread t,
Throwable e) |
Constructor and Description |
---|
Exception(String message,
Throwable cause) |
Exception(Throwable cause) |
IllegalArgumentException(String message,
Throwable cause)
Constructs an
IllegalArgumentException with the
specified detail message and cause. |
IllegalArgumentException(Throwable cause)
Constructs an
IllegalArgumentException with the
specified cause. |
RuntimeException(String message,
Throwable cause)
Constructs a new runtime exception with the specified detail message
and cause.
|
RuntimeException(Throwable cause)
Constructs a new runtime exception with the specified cause.
|
Throwable(String message,
Throwable cause)
Create a Throwable object.
|
Throwable(Throwable cause)
Create a Throwable object.
|
Modifier and Type | Class and Description |
---|---|
class |
SocketException
This exception indicates that a generic error occurred related to an
operation on a socket.
|
class |
SocketTimeoutException
This exception signals that a socket read or accept timed out.
|
class |
UnknownHostException
This exception indicates that an attempt was made to reference a hostname or
IP address that is not valid.
|
class |
URISyntaxException
This exception is thrown when a String cannot be parsed as a URI.
|
Modifier and Type | Class and Description |
---|---|
class |
ParseException
Signals that an error has been reached unexpectedly
while parsing.
|
Modifier and Type | Class and Description |
---|---|
class |
ConcurrentModificationException
Exception thrown by Iterators if the underlying connection has been modified during the iteration.
|
class |
EmptyQueueException
An exception thrown by some Queue class methods
to indicate that the Queue is empty
|
class |
EmptyStackException
An exception thrown by some stack class methods
to indicate that the stack is empty
|
class |
MissingResourceException
This exception is thrown when a resource is missing.
|
class |
NoSuchElementException
NoSuchElementException is a Exception used with StringTokenizer
|
Modifier and Type | Class and Description |
---|---|
class |
MqttException
This exception is thrown to indicate an mqtt problem of some sort occurred.
|
Modifier and Type | Class and Description |
---|---|
class |
JSONException
The JSONException is thrown by the JSON.org classes when things are amiss.
|
Modifier and Type | Method and Description |
---|---|
JSONException |
JSONTokener.syntaxError(String message,
Throwable causedBy)
Make a JSONException to signal a syntax error.
|
Constructor and Description |
---|
JSONException(String message,
Throwable cause)
Constructs a JSONException with an explanatory message and cause.
|
JSONException(Throwable cause)
Constructs a new JSONException with the specified cause.
|