< prev index next >

src/java.datatransfer/share/classes/java/awt/datatransfer/MimeTypeParseException.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 23,38 **** * questions. */ package java.awt.datatransfer; - /** ! * A class to encapsulate MimeType parsing related exceptions * - * @serial exclude * @since 1.3 */ public class MimeTypeParseException extends Exception { // use serialVersionUID from JDK 1.2.2 for interoperability private static final long serialVersionUID = -5604407764691570741L; --- 23,37 ---- * questions. */ package java.awt.datatransfer; /** ! * A class to encapsulate MimeType parsing related exceptions. * * @since 1.3 + * @serial exclude */ public class MimeTypeParseException extends Exception { // use serialVersionUID from JDK 1.2.2 for interoperability private static final long serialVersionUID = -5604407764691570741L;
*** 45,55 **** } /** * Constructs a MimeTypeParseException with the specified detail message. * ! * @param s the detail message. */ public MimeTypeParseException(String s) { super(s); } } // class MimeTypeParseException --- 44,54 ---- } /** * Constructs a MimeTypeParseException with the specified detail message. * ! * @param s the detail message */ public MimeTypeParseException(String s) { super(s); } } // class MimeTypeParseException
< prev index next >