summaryrefslogtreecommitdiff
path: root/src/provider/ExceptionListener.java
blob: bc4860e9720af2058d517f8da598bcad8bf858b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package provider;

/**
 * Notifies whenever an unexpected, fatal exception occurred.
 */
public interface ExceptionListener {

    /**
     * Callback for fatal errors.
     *
     * @param ex Exception that occurred.
     */
    public void exceptionGenerated(Exception ex);
}