Test.java Source code

Java tutorial

Introduction

Here is the source code for Test.java

Source

import java.util.InputMismatchException;

public class Test {
    public static void main(String[] args) {

        try {
            System.out.print("Enter a number: ");
            int number = 100;
            if (number < 0) {
                throw new InvalidParameter();
            }
            if (number > 10) {
                throw new AssertionError("Number was too big", new Throwable("Throwable assertion message"));
            }
        } catch (InputMismatchException | InvalidParameter e) {
            e.addSuppressed(new Throwable());
            System.out.println("Invalid input, try again");
        } catch (final Exception e) {
            System.out.println("Invalid input, try again");
        }
    }
}

class InvalidParameter extends java.lang.Exception {
    public InvalidParameter() {
        super("Invalid Parameter");
    }
}