1. /*
  2. * @(#)ZipException.java 1.12 00/02/02
  3. *
  4. * Copyright 1995-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.util.zip;
  11. import java.io.IOException;
  12. /**
  13. * Signals that a Zip exception of some sort has occurred.
  14. *
  15. * @author unascribed
  16. * @version 1.12 02/02/00
  17. * @see java.io.IOExcpetion
  18. * @since JDK1.0
  19. */
  20. public
  21. class ZipException extends IOException {
  22. /**
  23. * Constructs an <code>ZipException</code> with <code>null</code>
  24. * as its error detail message.
  25. */
  26. public ZipException() {
  27. super();
  28. }
  29. /**
  30. * Constructs an <code>ZipException</code> with the specified detail
  31. * message.
  32. *
  33. * @param s the detail message.
  34. */
  35. public ZipException(String s) {
  36. super(s);
  37. }
  38. }