Package acdp.exceptions
Class IOFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
acdp.exceptions.ACDPException
acdp.exceptions.IOFailureException
- All Implemented Interfaces:
Serializable
Thrown to indicate that an I/O error has occurred.
- Author:
- Beat Hörmann
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIOFailureException
(acdp.internal.Database_ db, Throwable cause) Constructs this type of exception with a detail message composed from the specified database and with the specified cause.IOFailureException
(acdp.internal.Table_ table, Throwable cause) Constructs this type of exception with a detail message composed from the specified table and with the specified cause.IOFailureException
(Throwable cause) Constructs this type of exception with the specified cause. -
Method Summary
Methods inherited from class acdp.exceptions.ACDPException
compose, prefix, prefix, prefix, prefix, prefix, prefix, prefix
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IOFailureException
Constructs this type of exception with the specified cause.- Parameters:
cause
- The cause.
-
IOFailureException
Constructs this type of exception with a detail message composed from the specified database and with the specified cause.- Parameters:
db
- The database.cause
- The cause.
-
IOFailureException
Constructs this type of exception with a detail message composed from the specified table and with the specified cause.- Parameters:
table
- The table.cause
- The cause.
-