Handler for reporting errors from the AbstractLoader.
| 34 | * Handler for reporting errors from the AbstractLoader. |
| 35 | */ |
| 36 | public interface ErrorHandler { |
| 37 | /** |
| 38 | * Called whenever, trying to retrieve a candidate class from its name, a |
| 39 | * ClassNotFoundException is thrown |
| 40 | * |
| 41 | * @param name Candidate class name |
| 42 | */ |
| 43 | void classNotFound(String name); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Error handler that logs errors to a text stream. |
no outgoing calls
no test coverage detected
searching dependent graphs…