All Packages Class Hierarchy This Package Previous Next Index
Class java.naming.LinkLoopException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.naming.NamingException
|
+----java.naming.LinkException
|
+----java.naming.LinkLoopException
- public class LinkLoopException
- extends LinkException
LinkLoopException indcates that
a loop was detected will attempting to resolve a link, or a implementation
specific limit on link counts has been reached.
-
LinkLoopException(Name, Object, Name, String)
- Constructs a new instance of LinkLoopException using the
non-link information specified.
-
LinkLoopException(Name, Object, Name, String, Name, Object, Name, String)
- Constructs a new instance of LinkLoopException using the
both non-link and link information specified.
LinkLoopException
public LinkLoopException(Name resolvedName,
Object resolvedObj,
Name remainingName,
String explanation)
- Constructs a new instance of LinkLoopException using the
non-link information specified.
- 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.
LinkLoopException
public LinkLoopException(Name resolvedName,
Object resolvedObj,
Name remainingName,
String explanation,
Name linkResolvedName,
Object linkResolvedObj,
Name linkRemainingName,
String linkExplanation)
- Constructs a new instance of LinkLoopException using the
both non-link and link information specified.
- 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.
- linkResolvedName - The part of the link that has been
successfully resolved.
- linkResolvedObj - The object to which resolution of the part of the link was successful.
- linkRemainingName - The remaining unresolved portion of the link.
- linkExplanation - Additional detail about attempting to resolving the link.
All Packages Class Hierarchy This Package Previous Next Index