| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException java.lang.IllegalArgumentException org.jdom.IllegalAddException
IllegalAddException | public class IllegalAddException extends IllegalArgumentException (Code) | | Thrown when trying to add a illegal object to a JDOM construct.
version: $Revision: 1.1 $, $Date: 2005/04/27 09:32:37 $ author: Brett McLaughlin author: Jason Hunter |
Constructor Summary | |
| IllegalAddException(Element base, Attribute added, String reason) This will create an Exception indicating
that the addition of the
Attribute
to the
Element is illegal. | | IllegalAddException(Element base, Element added, String reason) This will create an Exception indicating
that the addition of the
Element
to parent is illegal. | | IllegalAddException(Element added, String reason) This will create an Exception indicating
that the addition of the
Element
to the
Document is illegal. | | IllegalAddException(Element base, ProcessingInstruction added, String reason) This will create an Exception indicating
that the addition of the
ProcessingInstruction
to the
Element is illegal. | | IllegalAddException(ProcessingInstruction added, String reason) This will create an Exception indicating
that the addition of the
ProcessingInstruction
to the
Document is illegal. | | IllegalAddException(Element base, Comment added, String reason) This will create an Exception indicating
that the addition of the
Comment
to the
Element is illegal. | | IllegalAddException(Element base, CDATA added, String reason) | | IllegalAddException(Element base, Text added, String reason) This will create an Exception indicating
that the addition of the
Text
to the
Element is illegal. | | IllegalAddException(Comment added, String reason) This will create an Exception indicating
that the addition of the
Comment
to the
Document is illegal. | | IllegalAddException(Element base, EntityRef added, String reason) This will create an Exception indicating
that the addition of the
EntityRef
to the
Element is illegal. | | IllegalAddException(Element base, Namespace added, String reason) This will create an Exception indicating
that the addition of the
Namespace
to the
Element is illegal. | | IllegalAddException(DocType added, String reason) This will create an Exception indicating
that the addition of the
DocType
to the
Document is illegal. | public | IllegalAddException(String reason) This will create an Exception with the specified
error message. |
IllegalAddException | IllegalAddException(Element base, Attribute added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
Attribute
to the
Element is illegal.
Parameters: base - Element that Attribute couldn't be added to Parameters: added - Attribute that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element base, Element added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
Element
to parent is illegal.
Parameters: base - Element that the childcouldn't be added to Parameters: added - Element that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
Element
to the
Document is illegal.
Parameters: added - Element that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element base, ProcessingInstruction added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
ProcessingInstruction
to the
Element is illegal.
Parameters: base - Element that theProcessingInstruction couldn't be added to Parameters: added - ProcessingInstruction that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(ProcessingInstruction added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
ProcessingInstruction
to the
Document is illegal.
Parameters: added - ProcessingInstruction that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element base, Comment added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
Comment
to the
Element is illegal.
Parameters: base - Element that the Comment couldn't be added to Parameters: added - Comment that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element base, CDATA added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
CDATA
Parameters: base - Element that the CDATA couldn't be added to Parameters: added - CDATA that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element base, Text added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
Text
to the
Element is illegal.
Parameters: base - Element that the Comment couldn't be added to Parameters: added - Text that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Comment added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
Comment
to the
Document is illegal.
Parameters: added - Comment that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element base, EntityRef added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
EntityRef
to the
Element is illegal.
Parameters: base - Element that the EntityRef couldn't be added to Parameters: added - EntityRef reference that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(Element base, Namespace added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
Namespace
to the
Element is illegal.
Parameters: base - Element that the Namespace couldn't be added to Parameters: added - Namespace that could not be added Parameters: reason - cause of the problem |
IllegalAddException | IllegalAddException(DocType added, String reason)(Code) | | This will create an Exception indicating
that the addition of the
DocType
to the
Document is illegal.
Parameters: added - DocType that could not be added Parameters: reason - cause of the problem |
IllegalAddException | public IllegalAddException(String reason)(Code) | | This will create an Exception with the specified
error message.
Parameters: reason - cause of the problem |
|
|