We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec3ff1 commit 51d2494Copy full SHA for 51d2494
src/main/java/com/github/shyiko/mysql/binlog/network/SocketFactory.java
@@ -16,11 +16,12 @@
16
package com.github.shyiko.mysql.binlog.network;
17
18
import java.net.Socket;
19
+import java.net.SocketException;
20
21
/**
22
* @author <a href="mailto:[email protected]">Stanley Shyiko</a>
23
*/
24
public interface SocketFactory {
25
- Socket createSocket();
26
+ Socket createSocket() throws SocketException;
27
}
0 commit comments