Package net.jini.space
Class InternalSpaceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.jini.space.InternalSpaceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DirectoryInternalSpaceException,EngineInternalSpaceException,InternalInactiveSpaceException,LeaseInternalSpaceException,PBSInternalSpaceException,PersistentInternalSpaceException,ProxyInternalSpaceException,ReplicationInternalSpaceException,WindowsRegistryException
This exception denotes a problem with the local implementation of the
JavaSpace
interface. The detail field will give a description that can be reported to the
space developer (and may be documented in that space's external documentation).- Author:
- Sun Microsystems, Inc.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate an exception, forwarding a string to the superclass constructor.InternalSpaceException(String str, Throwable ex) Create an exception, forwarding a string and exception to the superclass constructor.InternalSpaceException(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InternalSpaceException
Create an exception, forwarding a string to the superclass constructor.- Parameters:
str- a detail message
-
InternalSpaceException
- Parameters:
cause-
-
InternalSpaceException
Create an exception, forwarding a string and exception to the superclass constructor.- Parameters:
str- a detail messageex- a nested exception
-