exceptions in java

In java exception is an object. Exceptions are created when an abnormal 
situations are arised in our program. Exceptions can be created by JVM or 
by our application code. All Exception classes are defined in java.lang. 
In otherwords we can say Exception as run time error. I use try & catch blocks 
to handle any exceptions in my code. 
  I am familiar with major checked and unchecked exceptions and 
  handle it accordingly to make my code execution smooth

4.13
8
TylerH 100 points

                                    Unchecked:
-IndexOutOfBounds exception(while working with arrays/strings)
-NullPointerException(if I forget to instantiate the objects)
-ArithmaticException

Checked:
-IOException
-SQLException
-FileNotFountException

4.13 (8 Votes)
0
4
2
Aadivrirya 95 points

                                    1.Unchecked: occurs during run time
2.Checked Exceptions:occurs during the compile time. 
needs to be handled IMMEDIATELY
Exception handling: try & catch: blocks, used for handling the exception 
 
throws keyword is used within the method signature 
disadvantage is: throws keyword whoever calls the method 
will have to handle the exception again but with 
try/catch you handle once. Try/catch is better way to handle it 
in utility class. Next time you call method you don’t get any exceptions
 
most common Exception like NullPointerExceptio, 
ArrayIndexOutOfBound, ClassNotFoundException, IOException.
are unchecked and they are descended from java.lang.RuntimeException
In Selenium: nosuchelement, nostaleexception, nosuchaframe 
In SQL: SQL exception 

4 (2 Votes)
0
Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source