Skip to content

Commit

Permalink
dev 1.7.1 exception fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyue168git committed Mar 24, 2021
1 parent ddee508 commit 04316a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class ExportDataSDK {
* @return the executor
* @throws ConfigException
*/
public static DataExportExecutor create(ExportDataSource dataSource, ChainInfo chainInfo) throws ConfigException {
public static DataExportExecutor create(ExportDataSource dataSource, ChainInfo chainInfo) throws Exception {
return DataExportService.create(dataSource,chainInfo, new ExportConfig());
}

Expand All @@ -32,7 +32,7 @@ public static DataExportExecutor create(ExportDataSource dataSource, ChainInfo c
* @return the executor
* @throws ConfigException
*/
public static DataExportExecutor create(ExportDataSource dataSource, ChainInfo chainInfo, ExportConfig config) throws ConfigException {
public static DataExportExecutor create(ExportDataSource dataSource, ChainInfo chainInfo, ExportConfig config) throws Exception {
return DataExportService.create(dataSource,chainInfo,config);
}

Expand Down

0 comments on commit 04316a1

Please sign in to comment.