KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > StackOverflowError

java.lang
Class StackOverflowError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.lang.VirtualMachineError
              extended by 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  

Popular Tags