1. /*
  2. * @(#)ObjectStreamException.java 1.8 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.io;
  8. /**
  9. * Superclass of all exceptions specific to Object Stream classes.
  10. *
  11. * @author unascribed
  12. * @version 1.8, 11/29/01
  13. * @since JDK1.1
  14. */
  15. public abstract class ObjectStreamException extends IOException {
  16. /**
  17. * Create an ObjectStreamException with the specified argument.
  18. */
  19. protected ObjectStreamException(String classname) {
  20. super(classname);
  21. }
  22. /**
  23. * Create an ObjectStreamException.
  24. */
  25. protected ObjectStreamException() {
  26. super();
  27. }
  28. }