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

com.cherokeesoft.db.utils.api.TransactionSupplier Maven / Gradle / Ivy

There is a newer version: 1.8.29
Show newest version
package com.cherokeesoft.db.utils.api;


import com.cherokeesoft.db.utils.exception.DataException;


public interface TransactionSupplier  {
    V doGet() throws Exception;

    default V get() throws DataException {
        try {
            return doGet();
        } catch (Exception e) {
            throw new DataException(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy