--- old/src/java.desktop/share/classes/java/awt/color/CMMException.java 2018-10-22 16:02:38.000000000 -0700 +++ new/src/java.desktop/share/classes/java/awt/color/CMMException.java 2018-10-22 16:02:38.000000000 -0700 @@ -1,4 +1,5 @@ /* + * Copyright (c) 1997, 2018, 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 @@ -22,13 +23,7 @@ * questions. */ -/* - Created by gbp, October 25, 1997 - - * - */ -/* - ********************************************************************** +/* ******************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** @@ -38,22 +33,24 @@ ********************************************************************** **********************************************************************/ - package java.awt.color; - /** * This exception is thrown if the native CMM returns an error. */ - public class CMMException extends java.lang.RuntimeException { + + /** + * Use serialVersionUID from JDK 1.2 for interoperability. + */ private static final long serialVersionUID = 5775558044142994965L; /** - * Constructs a CMMException with the specified detail message. - * @param s the specified detail message + * Constructs a {@code CMMException} with the specified detail message. + * + * @param s the specified detail message */ - public CMMException (String s) { - super (s); + public CMMException(String s) { + super(s); } }