001package io.ebean.plugin;
002
003import io.ebean.bean.EntityBean;
004
005/**
006 * Errorhandler to handle load errors and may be recover correct value.
007 *
008 * @author Roland Praml, FOCONIS AG
009 *
010 */
011@FunctionalInterface
012public interface LoadErrorHandler {
013  void handleLoadError(EntityBean bean, Property prop, String fullName, Exception e);
014}