[java programming] Re: throws clause

2009-05-14 Thread miga
On May 14, 11:02 am, "* ^ *" wrote: > On May 14, 1:07 pm, miga wrote: > > > > > On May 14, 6:59 am, "* ^ *" wrote: > > > > I cannot seem to propagate the throws clause up the calling method. > > > Why? > > > > The relevant code fragments are as below: > > > class WorldCupCountries{ > > >    

[java programming] Re: throws clause

2009-05-14 Thread * ^ *
On May 14, 1:07 pm, miga wrote: > On May 14, 6:59 am, "* ^ *" wrote: > > > I cannot seem to propagate the throws clause up the calling method. > > Why? > > > The relevant code fragments are as below: > > class WorldCupCountries{ > >     public WorldCupCountries() throws URISyntaxException{ > >  

[java programming] Re: throws clause

2009-05-13 Thread miga
On May 14, 6:59 am, "* ^ *" wrote: > I cannot seem to propagate the throws clause up the calling method. > Why? > > The relevant code fragments are as below: > class WorldCupCountries{ >     public WorldCupCountries() throws URISyntaxException{ >         doSelectionNDisplay(); >     } >     pri