All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.gustavovitor.maker.GenericErrorInterpreter Maven / Gradle / Ivy

There is a newer version: 1.7.3
Show newest version
package com.github.gustavovitor.maker;

import com.github.gustavovitor.maker.repository.MongoRepositoryMaker;
import com.github.gustavovitor.maker.service.MongoServiceMaker;

import java.util.Map;

public interface GenericErrorInterpreter {
    void onInsertError(MongoServiceMaker service, MongoRepositoryMaker repository, Throwable e, Object object);
    void onUpdateError(MongoServiceMaker service, MongoRepositoryMaker repository, Throwable e, Object objectId, Object object);
    void onPatchError(MongoServiceMaker service, MongoRepositoryMaker repository, Throwable e, Object objectId, Map object);
    void onDeleteError(MongoServiceMaker service, MongoRepositoryMaker repository, Throwable e, Object object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy