Enum Class EmbeddedSass.ProtocolErrorType

java.lang.Object
java.lang.Enum<EmbeddedSass.ProtocolErrorType>
sass.embedded_protocol.EmbeddedSass.ProtocolErrorType
All Implemented Interfaces:
Internal.EnumLite, ProtocolMessageEnum, Serializable, Comparable<EmbeddedSass.ProtocolErrorType>, Constable
Enclosing class:
EmbeddedSass

public static enum EmbeddedSass.ProtocolErrorType extends Enum<EmbeddedSass.ProtocolErrorType> implements ProtocolMessageEnum
 Potential types of protocol errors.
 
Protobuf enum sass.embedded_protocol.ProtocolErrorType
  • Enum Constant Details

    • PARSE

      public static final EmbeddedSass.ProtocolErrorType PARSE
       A message was received that couldn't be decoded as an `InboundMessage` (for
       the compiler) or `OutboundMessage` (for the host).
       
      PARSE = 0;
    • PARAMS

      public static final EmbeddedSass.ProtocolErrorType PARAMS
       A message was received that violated a documented restriction, such as not
       providing a mandatory field.
       
      PARAMS = 1;
    • INTERNAL

      public static final EmbeddedSass.ProtocolErrorType INTERNAL
       Something unexpected went wrong within the endpoint.
       
      INTERNAL = 2;
    • UNRECOGNIZED

      public static final EmbeddedSass.ProtocolErrorType UNRECOGNIZED
  • Field Details

    • PARSE_VALUE

      public static final int PARSE_VALUE
       A message was received that couldn't be decoded as an `InboundMessage` (for
       the compiler) or `OutboundMessage` (for the host).
       
      PARSE = 0;
      See Also:
    • PARAMS_VALUE

      public static final int PARAMS_VALUE
       A message was received that violated a documented restriction, such as not
       providing a mandatory field.
       
      PARAMS = 1;
      See Also:
    • INTERNAL_VALUE

      public static final int INTERNAL_VALUE
       Something unexpected went wrong within the endpoint.
       
      INTERNAL = 2;
      See Also:
  • Method Details