+1 Tim Ellison wrote:
[EMAIL PROTECTED] wrote:- public void add(Area area) { + public void add(Area area) throws org.apache.harmony.luni.util.NotImplementedException { throw new RuntimeException("Not implemented"); //$NON-NLS-1$ }Sorry if I'm getting annoying ;-) but why not : (1) import the NotYetImplementedException like we do everywhere else for type we reference, and (2) actually throw it rather than a generic RuntimeException? Regards, Tim
