Answers for "java create throwable exceptions"

3

in java how to throw exception from function

public void doChangePin(int oldPin, int pin) throws Exception {	//need to add throws followed by exception name
		if (oldPin == pinCode) {
			pinCode = pin;
		} else {
			throw new Exception("some message");	//throwing the exception by creating its new object
		}
	}
Posted by: Guest on May-02-2021
2

throw error java

throw new java.lang.Error("this is very bad");
throw new java.lang.RuntimeException("this is not quite as bad");
Posted by: Guest on March-21-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language