FileDocCategorySizeDatePackage
ImmutableResourceException.javaAPI DocApache Ant 1.701398Wed Dec 13 06:16:22 GMT 2006org.apache.tools.ant.types.resources

ImmutableResourceException

public class ImmutableResourceException extends IOException
Exception thrown when an attempt is made to get an OutputStream from an immutable Resource.
since
Ant 1.7

Fields Summary
Constructors Summary
public ImmutableResourceException()
Default constructor.

        super();
    
public ImmutableResourceException(String s)
Construct a new ImmutableResourceException with the specified message.

param
s the message String.

        super(s);
    
Methods Summary