Package acdp.exceptions
Class ShutdownException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
acdp.exceptions.ACDPException
acdp.exceptions.ShutdownException
- All Implemented Interfaces:
Serializable
Thrown if the database is still used after it was closed.
More technical: Thrown if a file channel is requested from the file channel provider after the file channel provider was shut down or if the synchronization manager is shut down and there is still a client around that
- tries to get a unit or
- tries to open a read zone or
- tries to open the ACDP zone or
- tries to invoke a Kamikaze write.
- Author:
- Beat Hörmann
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionShutdownException
(acdp.internal.Database_ db, String message) Constructs this type of exception with a message composed from the specified database and message.ShutdownException
(String message) Constructs this type of exception with the specified message. -
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
-
ShutdownException
Constructs this type of exception with the specified message.- Parameters:
message
- The message.
-
ShutdownException
Constructs this type of exception with a message composed from the specified database and message.- Parameters:
db
- The database.message
- The message.
-