Interface ExceptionsAttribute

All Superinterfaces:
Attribute<ExceptionsAttribute>, ClassFileElement, MethodElement

public sealed interface ExceptionsAttribute extends Attribute<ExceptionsAttribute>, MethodElement
Models the Exceptions attribute (JVMS ), which records the exceptions declared to be thrown by this method.

This attribute only appears on methods, and does not permit multiple instances in a method. It has a data dependency on the constant pool.

The attribute was introduced in the Java Platform version 1.0.2, major version 45.

Since:
24
See Also:
  • Method Details

    • exceptions

      List<ClassEntry> exceptions()
      Returns the exceptions declared to be thrown by this method.
      Returns:
      the exceptions declared to be thrown by this method
      See Also:
    • of

      static ExceptionsAttribute of(List<ClassEntry> exceptions)
      Returns an Exceptions attribute.
      Parameters:
      exceptions - the exceptions that may be thrown from this method
      Returns:
      an Exceptions attribute
    • of

      static ExceptionsAttribute of(ClassEntry... exceptions)
      Returns an Exceptions attribute.
      Parameters:
      exceptions - the exceptions that may be thrown from this method
      Returns:
      an Exceptions attribute
    • ofSymbols

      static ExceptionsAttribute ofSymbols(List<ClassDesc> exceptions)
      Returns an Exceptions attribute.
      Parameters:
      exceptions - the exceptions that may be thrown from this method
      Returns:
      an Exceptions attribute
    • ofSymbols

      static ExceptionsAttribute ofSymbols(ClassDesc... exceptions)
      Returns an Exceptions attribute.
      Parameters:
      exceptions - the exceptions that may be thrown from this method
      Returns:
      an Exceptions attribute