All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----jtelos.AttributeNotFoundException
Individual
that throw this exception.
Note that since it is a RuntimeException it doesn't
require a throws clause in methods that throw it, nor
try/catch statements around invocations of those
methods. Nonetheless, it should be handled.
public AttributeNotFoundException(String catLabels[],
String ownerName)
"Couldn't find attribute in categories that match labels:
<catLabels[0]>, <catLabels[1]>
< ... > in <ownerName>".
public AttributeNotFoundException(String catLabels[],
String attrLabel,
String ownerName)
"Couldn't find attribute in categories that match labels:
<catLabels[0]>, <catLabels[1]>
< ... > matching label <attrLabel> in
<ownerName>".
public AttributeNotFoundException(String attrName,
String listName,
String ownerName)
"Couldn't find attribute: <attrName>
in <listName> list in
<ownerName>".
All Packages Class Hierarchy This Package Previous Next Index