org.apache.tools.ant
Class UnsupportedAttributeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.apache.tools.ant.BuildException
                  extended by org.apache.tools.ant.UnsupportedAttributeException
All Implemented Interfaces:
java.io.Serializable

public class UnsupportedAttributeException
extends BuildException

Used to report attempts to set an unsupported attribute

Since:
Ant 1.6.3
See Also:
Serialized Form

Constructor Summary
UnsupportedAttributeException(java.lang.String msg, java.lang.String attribute)
          Constructs an unsupported attribute exception.
 
Method Summary
 java.lang.String getAttribute()
          Get the attribute that is wrong.
 
Methods inherited from class org.apache.tools.ant.BuildException
getCause, getException, getLocation, printStackTrace, printStackTrace, printStackTrace, setLocation, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnsupportedAttributeException

public UnsupportedAttributeException(java.lang.String msg,
                                     java.lang.String attribute)
Constructs an unsupported attribute exception.

Parameters:
msg - The string containing the message.
attribute - The unsupported attribute.
Method Detail

getAttribute

public java.lang.String getAttribute()
Get the attribute that is wrong.

Returns:
the attribute name.