1. /*
  2. * @(#)SyncFailedException.java 1.12 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. * Signals that a sync operation has failed.
  13. *
  14. * @author Ken Arnold
  15. * @version 1.12, 02/02/00
  16. * @see java.io.FileDescriptor#sync
  17. * @see java.io.IOException
  18. * @since JDK1.1
  19. */
  20. public class SyncFailedException extends IOException {
  21. /**
  22. * Constructs an SyncFailedException with a detail message.
  23. * A detail message is a String that describes this particular exception.
  24. *
  25. * @param desc a String describing the exception.
  26. */
  27. public SyncFailedException(String desc) {
  28. super(desc);
  29. }
  30. }