This commit is contained in:
dirgantarasiahaan
2023-06-04 00:06:01 +07:00
parent dbbde49f59
commit abc89d32d0
10 changed files with 125 additions and 26 deletions

View File

@@ -8,5 +8,5 @@ import java.io.FileNotFoundException;
import java.io.IOException;
public interface BaseService<T extends BaseRequest, V extends BaseResponse> {
V execute(T input) throws IOException;
V execute(T input) throws Exception;
}