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