FileDocCategorySizeDatePackage
UnsupportedAttributeException.javaAPI DocApache Ant 1.701522Wed Dec 13 06:16:20 GMT 2006org.apache.tools.ant

UnsupportedAttributeException

public class UnsupportedAttributeException extends BuildException
Used to report attempts to set an unsupported attribute
since
Ant 1.6.3

Fields Summary
private String
attribute
Constructors Summary
public UnsupportedAttributeException(String msg, String attribute)
Constructs an unsupported attribute exception.

param
msg The string containing the message.
param
attribute The unsupported attribute.

        super(msg);
        this.attribute = attribute;
    
Methods Summary
public java.lang.StringgetAttribute()
Get the attribute that is wrong.

return
the attribute name.

        return attribute;