com.koushikdutta.async.http.server.StreamSkipException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidasync Show documentation
Show all versions of androidasync Show documentation
Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.
package com.koushikdutta.async.http.server;
public class StreamSkipException extends Exception {
public StreamSkipException(String message) {
super(message);
}
}