Skip to content

Commit c39de17

Browse files
committed
dbeaver/pro#7906 App initialization error handle
1 parent 147edde commit c39de17

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/bundles/io.cloudbeaver.server.ce/src/io/cloudbeaver/service/DBWServiceInitializer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@
1717
package io.cloudbeaver.service;
1818

1919
import io.cloudbeaver.server.CBApplication;
20+
import org.jkiss.code.NotNull;
2021
import org.jkiss.dbeaver.DBException;
2122

2223
/**
2324
* Web service implementation
2425
*/
2526
public interface DBWServiceInitializer extends DBWServiceBinding {
2627

27-
void initializeService(CBApplication<?> application) throws DBException;
28+
void initializeService(@NotNull CBApplication<?> application) throws DBException;
2829

2930
}

0 commit comments

Comments
 (0)