1. /*
  2. * @(#)ObjectStreamException.java 1.10 00/02/02
  3. *
  4. * Copyright 1996-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.io;
  11. /**
  12. * Superclass of all exceptions specific to Object Stream classes.
  13. *
  14. * @author unascribed
  15. * @version 1.10, 02/02/00
  16. * @since JDK1.1
  17. */
  18. public abstract class ObjectStreamException extends IOException {
  19. /**
  20. * Create an ObjectStreamException with the specified argument.
  21. *
  22. * @param classname the detailed message for the exception
  23. */
  24. protected ObjectStreamException(String classname) {
  25. super(classname);
  26. }
  27. /**
  28. * Create an ObjectStreamException.
  29. */
  30. protected ObjectStreamException() {
  31. super();
  32. }
  33. }