1. /*
  2. * @(#)MimeTypeParseException.java 1.5 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.awt.datatransfer;
  8. /**
  9. * A class to encapsulate MimeType parsing related exceptions
  10. */
  11. class MimeTypeParseException extends Exception {
  12. /**
  13. * Constructs a MimeTypeParseException with no specified detail message.
  14. */
  15. public MimeTypeParseException() {
  16. super();
  17. }
  18. /**
  19. * Constructs a MimeTypeParseException with the specified detail message.
  20. *
  21. * @param s the detail message.
  22. */
  23. public MimeTypeParseException(String s) {
  24. super(s);
  25. }
  26. }