java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.VirtualMachineError
java.lang.StackOverflowError
- All Implemented Interfaces:
- Serializable
- See Also:
- Top Examples, Source Code
public StackOverflowError()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[1400]StackOverflowError
By pribin_ja { at } hotmail { dot } com on 2005/04/22 02:03:27 Rate
try {
//piece of code
} catch ( StackOverflowError ex2 ) {
System.out.println ( "INSIDE CATCH ex2 --GenerateXML" ) ;
ex2.printStackTrace ( ) ;
}
CAN I USE LIKE THIS in catch ( )
public StackOverflowError(String s)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples