use of abs.backend.java.lib.runtime.ABSAssertException in project abstools by abstools.
the class Socket method setSocket.
void setSocket(java.net.Socket socket) {
__ABS_init();
this.client_socket = socket;
setupStream();
try {
input.setStream(new DataInputStream(client_socket.getInputStream()));
output.setStream(new DataOutputStream(client_socket.getOutputStream()));
} catch (IOException e) {
throw new ABSAssertException(e.getLocalizedMessage());
}
}
Aggregations