import java.lang.*; class ItemException extends Exception { public ItemException() { super(); } public ItemException(String s) { super(s); } }