| 19 | package de.crupp.upscaledb; |
| 20 | |
| 21 | public interface ErrorHandler { |
| 22 | |
| 23 | /** |
| 24 | * The handleMessage method is called whenever a message |
| 25 | * is emitted. |
| 26 | * <p> |
| 27 | * More information: <a href="http://files.upscaledb.com/documentation/html/group__ups__static.html#ga7e9a7dfcb312d1407b69e3c1a1f0d71e">C documentation</a> |
| 28 | * |
| 29 | * @param level the debug level (0 = Debug, 1 = Normal, 3 = Fatal) |
| 30 | * @param message the message |
| 31 | */ |
| 32 | public void handleMessage(int level, String message); |
| 33 | } |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected