Exception java code example
Example 1: throw io exception java
public static void foo() throws IOException {
// some code here, when something goes wrong, you might do:
throw new IOException("error message");
}
public static void main(String[] args) {
try {
foo();
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
Example 2: python exception
try:
except ValueError as ve:
print(ve)
Example 3: what is exception 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.
Example 4: exception 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
Example 5: java throw an exception
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
System.out.println("Enter a number");
try {
double nb1 = kb.nextDouble();
if(nb1<0)
throw new ArithmeticException();
else System.out.println( "result : " + Math.sqrt(nb1) );
} catch (ArithmeticException e) {
System.out.println("You tried an impossible sqrt");
}
}
Example 6: exception java
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