blob: bf1ddabf07b92208462295542be5ede76906b635 (
plain)
1
2
3
4
5
6
7
8
|
import java.io.IOException;
aspect LibraryAspect {
public void lib.LibraryInterface.run() throws IOException {
throw new IOException("LibraryAspect-defined run() for " + this);
}
}
|