All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.koushikdutta.async.AsyncSSLException Maven / Gradle / Ivy

Go to download

Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.

There is a newer version: 3.1.0
Show newest version
package com.koushikdutta.async;

import javax.net.ssl.SSLPeerUnverifiedException;

public class AsyncSSLException extends SSLPeerUnverifiedException {
    public AsyncSSLException() {
        super("Peer not trusted by any of the system trust managers.");
    }
    private boolean mIgnore = false;
    public void setIgnore(boolean ignore) {
        mIgnore = ignore;
    }
    
    public boolean getIgnore() {
        return mIgnore;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy