Skip to content

Commit

Permalink
Add IO exception to signature.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Sep 24, 2024
1 parent f96b589 commit 8ab84e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion byte-buddy-dep/src/main/java/net/bytebuddy/build/Plugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -2260,8 +2260,9 @@ interface Origin extends Iterable<Element>, Closeable {
* of this origin to close the locator or its underlying resources.
*
* @return A class file locator for locating class files of this instance.
* @throws IOException If an I/O exception occurs.
*/
ClassFileLocator getClassFileLocator();
ClassFileLocator getClassFileLocator() throws IOException;

/**
* An origin implementation for a jar file.
Expand Down

0 comments on commit 8ab84e8

Please sign in to comment.