Packages

o

com.google.rpc.Code

OUT_OF_RANGE

case object OUT_OF_RANGE extends Code with Recognized with Product with Serializable

The operation was attempted past the valid range. E.g., seeking or reading past end-of-file.

Unlike INVALID_ARGUMENT, this error indicates a problem that may be fixed if the system state changes. For example, a 32-bit file system will generate INVALID_ARGUMENT if asked to read at an offset that is not in the range [0,2^32-1], but it will generate OUT_OF_RANGE if asked to read from an offset past the current file size.

There is a fair bit of overlap between FAILED_PRECONDITION and OUT_OF_RANGE. We recommend using OUT_OF_RANGE (the more specific error) when it applies so that callers who are iterating through a space can easily look for an OUT_OF_RANGE error to detect when they are done.

HTTP Mapping: 400 Bad Request

Annotations
@SerialVersionUID()
Source
Code.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OUT_OF_RANGE
  2. Recognized
  3. Code
  4. GeneratedEnum
  5. Serializable
  6. Product
  7. Equals
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type EnumType = Code
    Definition Classes
    Code → GeneratedEnum

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def asRecognized: Option[Recognized]
    Definition Classes
    Code
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def companion: GeneratedEnumCompanion[Code]
    Definition Classes
    Code → GeneratedEnum
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. val index: Int
    Definition Classes
    OUT_OF_RANGE → GeneratedEnum
  13. def isAborted: Boolean
    Definition Classes
    Code
  14. def isAlreadyExists: Boolean
    Definition Classes
    Code
  15. def isCancelled: Boolean
    Definition Classes
    Code
  16. def isDataLoss: Boolean
    Definition Classes
    Code
  17. def isDeadlineExceeded: Boolean
    Definition Classes
    Code
  18. def isFailedPrecondition: Boolean
    Definition Classes
    Code
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def isInternal: Boolean
    Definition Classes
    Code
  21. def isInvalidArgument: Boolean
    Definition Classes
    Code
  22. def isNotFound: Boolean
    Definition Classes
    Code
  23. def isOk: Boolean
    Definition Classes
    Code
  24. def isOutOfRange: Boolean
    Definition Classes
    OUT_OF_RANGECode
  25. def isPermissionDenied: Boolean
    Definition Classes
    Code
  26. def isResourceExhausted: Boolean
    Definition Classes
    Code
  27. def isUnauthenticated: Boolean
    Definition Classes
    Code
  28. def isUnavailable: Boolean
    Definition Classes
    Code
  29. def isUnimplemented: Boolean
    Definition Classes
    Code
  30. def isUnknown: Boolean
    Definition Classes
    Code
  31. def isUnrecognized: Boolean
    Definition Classes
    GeneratedEnum
  32. def javaValueDescriptor: EnumValueDescriptor
    Definition Classes
    GeneratedEnum
  33. val name: String
    Definition Classes
    OUT_OF_RANGE → GeneratedEnum
  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. def productElementName(n: Int): String
    Definition Classes
    Product
  38. def productElementNames: Iterator[String]
    Definition Classes
    Product
  39. def scalaValueDescriptor: EnumValueDescriptor
    Definition Classes
    GeneratedEnum
  40. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  41. def toString(): String
    Definition Classes
    GeneratedEnum → Any
  42. val value: Int
    Definition Classes
    Code → GeneratedEnum
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  45. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Recognized

Inherited from Code

Inherited from GeneratedEnum

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped