Class ThrowableProto

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
com.linecorp.armeria.common.grpc.ThrowableProto
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, ThrowableProtoOrBuilder, Serializable

public final class ThrowableProto extends com.google.protobuf.GeneratedMessageV3 implements ThrowableProtoOrBuilder
 An exception that was thrown by some code, based on the Java type of the same name.

 See: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html
 
Protobuf type armeria.grpc.ThrowableProto
See Also:
  • Field Details

    • ORIGINAL_CLASS_NAME_FIELD_NUMBER

      public static final int ORIGINAL_CLASS_NAME_FIELD_NUMBER
      See Also:
    • ORIGINAL_MESSAGE_FIELD_NUMBER

      public static final int ORIGINAL_MESSAGE_FIELD_NUMBER
      See Also:
    • STACK_TRACE_FIELD_NUMBER

      public static final int STACK_TRACE_FIELD_NUMBER
      See Also:
    • CAUSE_FIELD_NUMBER

      public static final int CAUSE_FIELD_NUMBER
      See Also:
  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • getOriginalClassName

      public String getOriginalClassName()
       The name of the class of the exception that was actually thrown. Downstream readers
       of this message may or may not have the actual class available to initialize, so
       this is just used to prefix the message of a generic exception type.
       
      string original_class_name = 1;
      Specified by:
      getOriginalClassName in interface ThrowableProtoOrBuilder
      Returns:
      The originalClassName.
    • getOriginalClassNameBytes

      public com.google.protobuf.ByteString getOriginalClassNameBytes()
       The name of the class of the exception that was actually thrown. Downstream readers
       of this message may or may not have the actual class available to initialize, so
       this is just used to prefix the message of a generic exception type.
       
      string original_class_name = 1;
      Specified by:
      getOriginalClassNameBytes in interface ThrowableProtoOrBuilder
      Returns:
      The bytes for originalClassName.
    • getOriginalMessage

      public String getOriginalMessage()
       The message of this throwable. Not filled if there is no message.
       
      string original_message = 2;
      Specified by:
      getOriginalMessage in interface ThrowableProtoOrBuilder
      Returns:
      The originalMessage.
    • getOriginalMessageBytes

      public com.google.protobuf.ByteString getOriginalMessageBytes()
       The message of this throwable. Not filled if there is no message.
       
      string original_message = 2;
      Specified by:
      getOriginalMessageBytes in interface ThrowableProtoOrBuilder
      Returns:
      The bytes for originalMessage.
    • getStackTraceList

      public List<StackTraceElementProto> getStackTraceList()
       The stack trace of this Throwable.
       
      repeated .armeria.grpc.StackTraceElementProto stack_trace = 3;
      Specified by:
      getStackTraceList in interface ThrowableProtoOrBuilder
    • getStackTraceOrBuilderList

      public List<? extends StackTraceElementProtoOrBuilder> getStackTraceOrBuilderList()
       The stack trace of this Throwable.
       
      repeated .armeria.grpc.StackTraceElementProto stack_trace = 3;
      Specified by:
      getStackTraceOrBuilderList in interface ThrowableProtoOrBuilder
    • getStackTraceCount

      public int getStackTraceCount()
       The stack trace of this Throwable.
       
      repeated .armeria.grpc.StackTraceElementProto stack_trace = 3;
      Specified by:
      getStackTraceCount in interface ThrowableProtoOrBuilder
    • getStackTrace

      public StackTraceElementProto getStackTrace(int index)
       The stack trace of this Throwable.
       
      repeated .armeria.grpc.StackTraceElementProto stack_trace = 3;
      Specified by:
      getStackTrace in interface ThrowableProtoOrBuilder
    • getStackTraceOrBuilder

      public StackTraceElementProtoOrBuilder getStackTraceOrBuilder(int index)
       The stack trace of this Throwable.
       
      repeated .armeria.grpc.StackTraceElementProto stack_trace = 3;
      Specified by:
      getStackTraceOrBuilder in interface ThrowableProtoOrBuilder
    • hasCause

      public boolean hasCause()
       The cause of this Throwable. Not filled if there is no cause.
       
      .armeria.grpc.ThrowableProto cause = 4;
      Specified by:
      hasCause in interface ThrowableProtoOrBuilder
      Returns:
      Whether the cause field is set.
    • getCause

      public ThrowableProto getCause()
       The cause of this Throwable. Not filled if there is no cause.
       
      .armeria.grpc.ThrowableProto cause = 4;
      Specified by:
      getCause in interface ThrowableProtoOrBuilder
      Returns:
      The cause.
    • getCauseOrBuilder

      public ThrowableProtoOrBuilder getCauseOrBuilder()
       The cause of this Throwable. Not filled if there is no cause.
       
      .armeria.grpc.ThrowableProto cause = 4;
      Specified by:
      getCauseOrBuilder in interface ThrowableProtoOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static ThrowableProto parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ThrowableProto parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ThrowableProto parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ThrowableProto parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ThrowableProto parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ThrowableProto parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ThrowableProto parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ThrowableProto parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static ThrowableProto parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static ThrowableProto parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ThrowableProto parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ThrowableProto parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      public ThrowableProto.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static ThrowableProto.Builder newBuilder()
    • newBuilder

      public static ThrowableProto.Builder newBuilder(ThrowableProto prototype)
    • toBuilder

      public ThrowableProto.Builder toBuilder()
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected ThrowableProto.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static ThrowableProto getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<ThrowableProto> parser()
    • getParserForType

      public com.google.protobuf.Parser<ThrowableProto> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public ThrowableProto getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder