NoSuchElementException.java 315 B

1234567891011
  1. /**
  2. * NoSuchElementException
  3. * Provides a nice message when the element selected does not exist.
  4. *
  5. * Written by Jonathan Landrum
  6. */
  7. public class NoSuchElementException extends RuntimeException {
  8. public NoSuchElementException() {
  9. System.err.println("The element requested does not exist.");
  10. }
  11. }