Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
828 changes: 463 additions & 365 deletions src/java.xml/share/classes/com/sun/org/apache/bcel/internal/Const.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved.
*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand All @@ -26,7 +26,7 @@
* Exception constants.
*
* @since 6.0 (intended to replace the InstructionConstant interface)
* @LastModified: Feb 2023
* @LastModified: Sept 2025
*/
public final class ExceptionConst {

Expand All @@ -52,7 +52,6 @@ public enum EXCS {
* Super class of any linking exception (aka Linkage Error)
*/
public static final Class<LinkageError> LINKING_EXCEPTION = LinkageError.class;

/**
* Linking Exceptions
*/
Expand All @@ -67,10 +66,10 @@ public enum EXCS {
public static final Class<NoSuchMethodError> NO_SUCH_METHOD_ERROR = NoSuchMethodError.class;
public static final Class<NoClassDefFoundError> NO_CLASS_DEF_FOUND_ERROR = NoClassDefFoundError.class;
public static final Class<UnsatisfiedLinkError> UNSATISFIED_LINK_ERROR = UnsatisfiedLinkError.class;

public static final Class<VerifyError> VERIFY_ERROR = VerifyError.class;
/* UnsupportedClassVersionError is new in JDK 1.2 */
// public static final Class UnsupportedClassVersionError = UnsupportedClassVersionError.class;

/**
* Run-Time Exceptions
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved.
*/
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down Expand Up @@ -30,7 +30,7 @@
* @see com.sun.org.apache.bcel.internal.util.Repository
* @see SyntheticRepository
*
* @LastModified: Feb 2023
* @LastModified: Sept 2025
*/
public abstract class Repository {

Expand Down Expand Up @@ -174,7 +174,7 @@ public static JavaClass lookupClass(final Class<?> clazz) throws ClassNotFoundEx
}

/**
* Lookups class somewhere found on your CLASSPATH, or wherever the repository instance looks for it.
* Lookups class somewhere found on your CLASSPATH, or whereever the repository instance looks for it.
*
* @return class object for given fully qualified class name
* @throws ClassNotFoundException if the class could not be found or parsed correctly
Expand Down
Loading