- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
105 lines
3.9 KiB
Java
105 lines
3.9 KiB
Java
package com.google.protobuf;
|
|
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class InvalidProtocolBufferException extends IOException {
|
|
private static final long serialVersionUID = -1616151763072450476L;
|
|
private MessageLite unfinishedMessage;
|
|
private boolean wasThrownFromInputStream;
|
|
|
|
public boolean getThrownFromInputStream() {
|
|
return this.wasThrownFromInputStream;
|
|
}
|
|
|
|
public MessageLite getUnfinishedMessage() {
|
|
return this.unfinishedMessage;
|
|
}
|
|
|
|
public void setThrownFromInputStream() {
|
|
this.wasThrownFromInputStream = true;
|
|
}
|
|
|
|
public InvalidProtocolBufferException setUnfinishedMessage(MessageLite messageLite) {
|
|
this.unfinishedMessage = messageLite;
|
|
return this;
|
|
}
|
|
|
|
public InvalidProtocolBufferException(String str) {
|
|
super(str);
|
|
this.unfinishedMessage = null;
|
|
}
|
|
|
|
public InvalidProtocolBufferException(Exception exc) {
|
|
super(exc.getMessage(), exc);
|
|
this.unfinishedMessage = null;
|
|
}
|
|
|
|
public InvalidProtocolBufferException(String str, Exception exc) {
|
|
super(str, exc);
|
|
this.unfinishedMessage = null;
|
|
}
|
|
|
|
public InvalidProtocolBufferException(IOException iOException) {
|
|
super(iOException.getMessage(), iOException);
|
|
this.unfinishedMessage = null;
|
|
}
|
|
|
|
public InvalidProtocolBufferException(String str, IOException iOException) {
|
|
super(str, iOException);
|
|
this.unfinishedMessage = null;
|
|
}
|
|
|
|
public IOException unwrapIOException() {
|
|
return getCause() instanceof IOException ? (IOException) getCause() : this;
|
|
}
|
|
|
|
public static InvalidProtocolBufferException truncatedMessage() {
|
|
return new InvalidProtocolBufferException("While parsing a protocol message, the input ended unexpectedly in the middle of a field. This could mean either that the input has been truncated or that an embedded message misreported its own length.");
|
|
}
|
|
|
|
public static InvalidProtocolBufferException negativeSize() {
|
|
return new InvalidProtocolBufferException("CodedInputStream encountered an embedded string or message which claimed to have negative size.");
|
|
}
|
|
|
|
public static InvalidProtocolBufferException malformedVarint() {
|
|
return new InvalidProtocolBufferException("CodedInputStream encountered a malformed varint.");
|
|
}
|
|
|
|
public static InvalidProtocolBufferException invalidTag() {
|
|
return new InvalidProtocolBufferException("Protocol message contained an invalid tag (zero).");
|
|
}
|
|
|
|
public static InvalidProtocolBufferException invalidEndTag() {
|
|
return new InvalidProtocolBufferException("Protocol message end-group tag did not match expected tag.");
|
|
}
|
|
|
|
public static InvalidWireTypeException invalidWireType() {
|
|
return new InvalidWireTypeException("Protocol message tag had invalid wire type.");
|
|
}
|
|
|
|
public static class InvalidWireTypeException extends InvalidProtocolBufferException {
|
|
private static final long serialVersionUID = 3283890091615336259L;
|
|
|
|
public InvalidWireTypeException(String str) {
|
|
super(str);
|
|
}
|
|
}
|
|
|
|
public static InvalidProtocolBufferException recursionLimitExceeded() {
|
|
return new InvalidProtocolBufferException("Protocol message had too many levels of nesting. May be malicious. Use CodedInputStream.setRecursionLimit() to increase the depth limit.");
|
|
}
|
|
|
|
public static InvalidProtocolBufferException sizeLimitExceeded() {
|
|
return new InvalidProtocolBufferException("Protocol message was too large. May be malicious. Use CodedInputStream.setSizeLimit() to increase the size limit.");
|
|
}
|
|
|
|
public static InvalidProtocolBufferException parseFailure() {
|
|
return new InvalidProtocolBufferException("Failed to parse the message.");
|
|
}
|
|
|
|
public static InvalidProtocolBufferException invalidUtf8() {
|
|
return new InvalidProtocolBufferException("Protocol message had invalid UTF-8.");
|
|
}
|
|
}
|