Enum Class ErrorCodes

java.lang.Object
java.lang.Enum<ErrorCodes>
org.chenile.proxy.errorcodes.ErrorCodes
All Implemented Interfaces:
Serializable, Comparable<ErrorCodes>, Constable

public enum ErrorCodes extends Enum<ErrorCodes>
Chenile Proxy error codes
  • Enum Constant Details

    • CANNOT_CONNECT

      public static final ErrorCodes CANNOT_CONNECT
    • CANNOT_INVOKE

      public static final ErrorCodes CANNOT_INVOKE
    • MISSING_BODY

      public static final ErrorCodes MISSING_BODY
  • Field Details

    • subError

      final int subError
  • Constructor Details

    • ErrorCodes

      private ErrorCodes(int subError)
  • Method Details

    • values

      public static ErrorCodes[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ErrorCodes valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getSubError

      public int getSubError()