Given the code, is ItemNotLocated a checked or unchecked exc…
Given the code, is ItemNotLocated a checked or unchecked exception? Is InventoryMiscounted a checked or unchecked exception? ItemNotLocated : [Item1] InventoryMiscounted : [Item2] class ItemNotLocated extends Exception{ public ItemNotLocated(String msg) { super(msg); } } class InventoryMiscounted extends RuntimeException { public InventoryMiscounted(String msg) { super(msg); } }
Read Details