Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- class NoMatchException extends Exception{}
- class DiffPattern{
- public static void main(String[] args){
- System.out.print("Whitch country is your favorite? -");
- try{
- if(!"India".equals(new Scanner(System.in).next())) throw new NoMatchException();
- else System.out.println("You love your country!");
- } catch(NoMatchException e){
- System.out.println("India should be your favorite!");
- }
- }
- }
- // Output:-
- // Whitch country is your favorite? -The United States of America
- // India should be your favorite!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement