Tag: exception
-
Nokia 6 Cost Price in Nepal & Specifications
Nokia 6, one of the most favored mobile worldwide has now arrived in the Nepalese market too. Not only this but all the branded Nokia phones are available in the Nepali market. Paramount Electronics, Nokia’s official distributor in Nepal has introduced Nokia 6 in the Nepali markets. According to the distributor, Nokia 6 costs Rs.…
-
Throw an Exception – Java Exception Program Implementation
Write a JAVA program to accept a number from the user and throw an exception (java exception) if the number is not an even number. Example of Throw an Exception Program Implementation. import java.lang.*; import java.io.*; class myException extends Exception { myException(String msg) { super(msg); } } class q12Exception { public static void main(String args[])…