
com.qiniu.android.dns.local.DnshijackingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of happy-dns Show documentation
Show all versions of happy-dns Show documentation
Qiniu Happy Dns for Android
package com.qiniu.android.dns.local;
import com.qiniu.android.dns.DnsException;
/**
* Created by bailong on 15/6/19.
*/
public class DnshijackingException extends DnsException {
public DnshijackingException(String domain, String server) {
super(domain, "has hijacked by " + server);
}
public DnshijackingException(String domain, String server, int ttl) {
super(domain, "has hijacked by " + server + " ttl " + ttl);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy