blob: 67d7826a17fe54eeef9d11237465f3820306afbd [file] [log] [blame]
package com.cloud.utils.db;
public interface TransactionCallbackWithException<T,E extends Throwable> {
public T doInTransaction(TransactionStatus status) throws E;
}