All Packages Class Hierarchy This Package Previous Next Index
Class java.naming.CannotProceedException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.naming.NamingException
|
+----java.naming.CannotProceedException
- public class CannotProceedException
- extends NamingException
This exception is raised to indicate that this operation cannot proceed
any further.
When performing an operation on a composite name,
a naming service provider reaches a part of the name that does not
belong in its namespace. At that point, it can invoke methods
provided by java.naming.spi.NamingManager (such as getContinuationContext())
to locate another provider to continue the operation.
If this is not possible, this exception is raised to the caller of the
context operation.
-
CannotProceedException()
- Constructs a new instance of CannotProceedException.
-
CannotProceedException(Name, Object, Name)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
-
CannotProceedException(Name, Object, Name, String)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
-
CannotProceedException(Object, Name)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
-
CannotProceedException(String)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
CannotProceedException
public CannotProceedException(Name resolvedName,
Object resolvedObj,
Name remainingName,
String explanation)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
- Parameters:
- resolvedName - The part of the name that has been
successfully resolved.
- resolvedObj - The object to which resolution was successful.
- remainingName - The remaining unresolved portion of the name.
- explanation - Additional detail about this exception.
CannotProceedException
public CannotProceedException(Object resolvedObj,
Name remainingName)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
- Parameters:
- resolvedObj - The object to which resolution was successful.
- remainingName - The remaining unresolved portion of the name.
CannotProceedException
public CannotProceedException(Name resolvedName,
Object resolvedObj,
Name remainingName)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
- Parameters:
- resolvedName - The part of the name that has been
successfully resolved.
- resolvedObj - The object to which resolution was successful.
- remainingName - The remaining unresolved portion of the name.
CannotProceedException
public CannotProceedException(String explanation)
- Constructs a new instance of CannotProceedException using the
arguments supplied.
- Parameters:
- explanation - Additional detail about this exception.
CannotProceedException
public CannotProceedException()
- Constructs a new instance of CannotProceedException.
All Packages Class Hierarchy This Package Previous Next Index