android.net.sip.SipErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.net.sip;
public class SipErrorCode
{
SipErrorCode() { throw new RuntimeException("Stub!"); }
public static java.lang.String toString(int errorCode) { throw new RuntimeException("Stub!"); }
public static final int NO_ERROR = 0;
public static final int SOCKET_ERROR = -1;
public static final int SERVER_ERROR = -2;
public static final int TRANSACTION_TERMINTED = -3;
public static final int CLIENT_ERROR = -4;
public static final int TIME_OUT = -5;
public static final int INVALID_REMOTE_URI = -6;
public static final int PEER_NOT_REACHABLE = -7;
public static final int INVALID_CREDENTIALS = -8;
public static final int IN_PROGRESS = -9;
public static final int DATA_CONNECTION_LOST = -10;
public static final int CROSS_DOMAIN_AUTHENTICATION = -11;
public static final int SERVER_UNREACHABLE = -12;
}