|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException PIRL.Utilities.Multiwriter_IOException
public class Multiwriter_IOException
A Multiwriter_IOException is an IOException that may carry multiple IOExceptions from multiple exception sources.
This exception is used when an IOExceptions might occur from more than one source but the first occurance of an exception will not be thrown. In this case all the exceptions that occurred can be accumulated in a Multiwriter_IOException which is then thrown after processing of all the sources has been completed. Each IOException is paired with the source of the exception.
Styled_Multiwriter
,
Serialized FormField Summary | |
---|---|
Vector |
Exceptions
The list of IOExceptions that were thrown. |
static String |
ID
Class identification name with source code version and date. |
Vector |
Sources
The list of source objects that have thrown an exception. |
Constructor Summary | |
---|---|
Multiwriter_IOException()
Construct a Multiwriter_IOException with no explanatory message. |
|
Multiwriter_IOException(String message)
Construct a Multiwriter_IOException with an explanatory message. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String ID
public Vector Sources
public Vector Exceptions
Each exception occurs at the same position in the list as the position
of the source in the Sources
list that caused the exception.
Constructor Detail |
---|
public Multiwriter_IOException(String message)
message
- A String explaining the exception.public Multiwriter_IOException()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |