Given the code, is Missing a checked or unchecked exception?…

Given the code, is Missing a checked or unchecked exception? Is Location a checked or unchecked exception? Missing: [Item1] Location: [Item2] class Missing extends Exception {     public Missing(String msg) {         super(msg);     } }  class Location extends RuntimeException {     public Location(String msg) {         super(msg);     } }