< prev index next >

src/java.base/share/classes/java/lang/module/FindException.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, 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) 2015, 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
*** 24,37 **** */ package java.lang.module; /** ! * Thrown by module finders when finding a module fails. * - * @see ModuleFinder * @since 9 */ public class FindException extends RuntimeException { private static final long serialVersionUID = -5817081036963388391L; --- 24,41 ---- */ package java.lang.module; /** ! * Thrown by a {@link ModuleFinder ModuleFinder} when an error occurs finding ! * a module. Also thrown by {@link ! * Configuration#resolve(ModuleFinder,java.util.List,ModuleFinder,java.util.Collection) ! * Configuration.resolve} when resolution fails for observability-related ! * reasons. * * @since 9 + * @spec JPMS */ public class FindException extends RuntimeException { private static final long serialVersionUID = -5817081036963388391L;
< prev index next >