public class org.fusesource.hawtbuf.proto.InvalidProtocolBufferException extends java.io.IOException
{
private static final long serialVersionUID;
private final java.lang.Boolean eof;
public void <init>(java.lang.String)
{
java.lang.Boolean v;
java.lang.String v;
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v := @this: org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
v := @parameter: java.lang.String;
v = staticinvoke <java.lang.Boolean: java.lang.Boolean valueOf(boolean)>(0);
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String,java.lang.Boolean)>(v, v);
return;
}
public void <init>(java.lang.String, java.lang.Boolean)
{
java.lang.Boolean v;
java.lang.String v;
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v := @this: org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
v := @parameter: java.lang.String;
v := @parameter: java.lang.Boolean;
specialinvoke v.<java.io.IOException: void <init>(java.lang.String)>(v);
v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: java.lang.Boolean eof> = v;
return;
}
public java.lang.Boolean isEOF()
{
java.lang.Boolean v;
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v := @this: org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
v = v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: java.lang.Boolean eof>;
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException truncatedMessage()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("While parsing a protocol message, the input ended unexpectedly in the middle of a field.  This could mean either than the input has been truncated or that an embedded message misreported its own length.");
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException negativeSize()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("CodedInputStream encountered an embedded string or message which claimed to have negative size.");
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException malformedVarint()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("CodedInputStream encountered a malformed varint.");
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException invalidTag()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("Protocol message contained an invalid tag (zero).");
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException invalidEndTag()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("Protocol message end-group tag did not match expected tag.");
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException invalidWireType()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("Protocol message tag had invalid wire type.");
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException recursionLimitExceeded()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("Protocol message had too many levels of nesting.  May be malicious.  Use CodedInputStream.setRecursionLimit() to increase the depth limit.");
return v;
}
static org.fusesource.hawtbuf.proto.InvalidProtocolBufferException sizeLimitExceeded()
{
org.fusesource.hawtbuf.proto.InvalidProtocolBufferException v;
v = new org.fusesource.hawtbuf.proto.InvalidProtocolBufferException;
specialinvoke v.<org.fusesource.hawtbuf.proto.InvalidProtocolBufferException: void <init>(java.lang.String)>("Protocol message was too large.  May be malicious.  Use CodedInputStream.setSizeLimit() to increase the size limit.");
return v;
}
}