ElementNotFoundException.java 195 B

12345
  1. public class ElementNotFoundException extends RuntimeException {
  2. public ElementNotFoundException (String collection) {
  3. System.out.println ("The target element is not in this collection");
  4. }
  5. }