// NegativeSizeException.java
public class NegativeSizeException extends IllegalArgumentException
{
public NegativeSizeException() {} // implied call to super()
public NegativeSizeException(String gripe) { super(gripe); }
} // class NegativeSizeException