FileDocCategorySizeDatePackage
MalformedLinkException.javaAPI DocJava SE 5 API1324Fri Aug 26 14:57:38 BST 2005javax.naming

MalformedLinkException

public class MalformedLinkException extends LinkException
This exception is thrown when a malformed link was encountered while resolving or constructing a link.

Synchronization and serialization issues that apply to LinkException apply directly here.

author
Rosanna Lee
author
Scott Seligman
version
1.7 03/12/19
see
LinkRef#getLinkName
see
LinkRef
since
1.3

Fields Summary
private static final long
serialVersionUID
Use serialVersionUID from JNDI 1.1.1 for interoperability
Constructors Summary
public MalformedLinkException(String explanation)
Constructs a new instance of MalformedLinkException with an explanation All the other fields are initialized to null.

param
explanation A possibly null string containing additional detail about this exception.

	super(explanation);
    
public MalformedLinkException()
Constructs a new instance of Malformed LinkException. All fields are initialized to null.

	super();
    
Methods Summary