Pages

Tuesday 25 December 2012

Exception Handling Java

  1. http://stackoverflow.com/questions/2699580/difference-between-unchecked-exception-or-runtime-exception
  2. http://java-questions.com/Exceptions_interview_questions.html
  3. http://stackoverflow.com/questions/1457863/what-is-the-difference-between-noclassdeffounderror-and-classnotfoundexception
  4. ClassNotFoundException : this is an exception when a class is trying to load some other class using the forname method and findsystem class in the class loader. This is an error of reflection NoClassDefException : The class was there at compile time but is not there at runtime. This is an error and was not expected.
  5. Difference between throws and throw keyword
  6. http://javarevisited.blogspot.com/2012/02/difference-between-throw-and-throws-in.html
  7. http://stackoverflow.com/questions/7049623/how-to-create-checked-unchecked-custom-exceptions-in-java
  8. throws will be used in the function declaration with no error handling inside the function

No comments:

Post a Comment