hello there
please send the link for exception i mean those who are related with constructor like these problems
public class Test9 extends A
{
Test9() throws Exception()
{
}
public static void main(
String args[]) throws Exception{
Test9 t = new Test9();
}
}
class A{
A() throws Exception{
System.out.println("A Class");
}
}
send soon
thanks
Krish Bajaj