package basics.unexpected;
/**
 * This interface can be used to receive all API errors.
 * @author kst
 */
public interface ProblemHandler
{
// notify the implementing class of an new error:
public void handleProblem(Throwable t);
}
