- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
25 lines
588 B
Java
25 lines
588 B
Java
package androidx.webkit;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.RestrictTo;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class WebResourceErrorCompat {
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
public @interface NetErrorCode {
|
|
}
|
|
|
|
@NonNull
|
|
public abstract CharSequence getDescription();
|
|
|
|
public abstract int getErrorCode();
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
public WebResourceErrorCompat() {
|
|
}
|
|
}
|