Answers for "custom exception in java"

2

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");
    }
}
Posted by: Guest on October-16-2020
0

java exception override message

// Most exception classes provide a constructor requesting a String.
// Check the API of your superclass.

public class PersonalException extends RuntimeException{
  
	public PersonalException() {
		super("This is a message for you! Something went wrong...");
	}
}
Posted by: Guest on November-17-2020

Code answers related to "custom exception in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language