hi all i have question regarding chain exception
try{ } catch(Exception e) { throw new SomeException(); }
if i do like this my eclipse will prompt error at line throw new SomeException(); stating "unhandled exception" and i must put something like
try{ } catch(Exception e) {
try{ throw new SomeException(); } catch(Exception e){}
}
why must do like this because tutorial that i read .example http://java.sys-con.com/node/36579 , does not have to do this