public class Multiwriter_IOException extends IOException
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 FormModifier and Type | Field and Description |
---|---|
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 and Description |
---|
Multiwriter_IOException()
Construct a Multiwriter_IOException with no explanatory message.
|
Multiwriter_IOException(String message)
Construct a Multiwriter_IOException with an explanatory message.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public static final String ID
public Vector Sources
public Multiwriter_IOException(String message)
message
- A String explaining the exception.public Multiwriter_IOException()