Package nu.xom
Class NoSuchChildException
- Object
-
- Throwable
-
- Exception
-
- RuntimeException
-
- nu.xom.XMLException
-
- nu.xom.NoSuchChildException
-
- All Implemented Interfaces:
Serializable
public class NoSuchChildException extends XMLException
Indicates that a child with a certain name and/or namespace does not exist. This is thrown when you attempt to remove a node from a parent that does not actually have that node as a child.
- Version:
- 1.1b3
- Author:
- Elliotte Rusty Harold
- See Also:
ParentNode.removeChild(Node)
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoSuchChildException(String message)
Creates a newNoSuchChildException
with a detail message.NoSuchChildException(String message, Throwable cause)
Creates a newNoSuchChildException
with the specified detail message and an underlying root cause.
-
Method Summary
-
Methods inherited from class nu.xom.XMLException
getCause, initCause
-
-
-
-
Constructor Detail
-
NoSuchChildException
public NoSuchChildException(String message)
Creates a new
NoSuchChildException
with a detail message.- Parameters:
message
- explains the reason for the exception
-
NoSuchChildException
public NoSuchChildException(String message, Throwable cause)
Creates a new
NoSuchChildException
with the specified detail message and an underlying root cause.- Parameters:
message
- explains the reason for the exceptioncause
- the nested exception that caused this exception
-
-