mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
15 lines
327 B
Java
15 lines
327 B
Java
package io.ebean.plugin;
|
|
|
|
import io.ebean.bean.EntityBean;
|
|
|
|
/**
|
|
* Errorhandler to handle load errors and may be recover correct value.
|
|
*
|
|
* @author Roland Praml, FOCONIS AG
|
|
*
|
|
*/
|
|
@FunctionalInterface
|
|
public interface LoadErrorHandler {
|
|
void handleLoadError(EntityBean bean, Property prop, String fullName, Exception e);
|
|
}
|