object JsonApiErrors extends JsonApiErrorGroup
- Annotations
- @Explanation(explanation = "Errors specific for Json Ledger API.")
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonApiErrors
- JsonApiErrorGroup
- ErrorGroup
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit val errorClass: ErrorClass
- Definition Classes
- ErrorGroup
- val fullClassName: String
- Definition Classes
- ErrorGroup
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object JsonApiPackageSelectionFailed extends ErrorCode
- Annotations
- @Explanation(explanation = "This error occurs when the Ledger JSON API server fails to find a suitable set of package-ids for decoding a given set of commands in a request.") @Resolution(resolution = """Inspect the error message and ensure that:
|1. The requested packages are uploaded on the participant node.
|2. The topology state satisfies the required vetting for the interested parties""")
- object MaximumNumberOfElements extends ErrorCode
- Annotations
- @Explanation(explanation = "This happens when the number of returned elements is equal or greater to the node limit.\n |The limit is defined by the node configuration and can be changed by the operator.\n | Check \'canton.participants.<participant-id>.http-ledger-api.websocket-config.http-list-max-elements-limit\'.\n | Notice: If configured in the participant node config, the actual returned number is the minimum between the \"limit\" query parameter in the request and this one .\n | If the request query \"limit\" is the same as the mentioned configuration, it allows to return result set up to server limit without producing error.\n |") @Resolution(resolution = """
|1. Preferred solution is to use websocket endpoint to get results in chunks.
|2. It is possible to increase the limit by changing the node configuration 'http-list-max-elements-limit' but this may have
|a severe impact on a node performance.""")