o
com.digitalasset.canton.participant.topology
ParticipantTopologyManagerError
Companion trait ParticipantTopologyManagerError
object ParticipantTopologyManagerError extends ParticipantErrorGroup
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ParticipantTopologyManagerError
- ParticipantErrorGroup
- ErrorGroup
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class IdentityManagerParentError(parent: TopologyManagerError)(implicit loggingContext: ErrorLoggingContext) extends ParticipantTopologyManagerError with ParentCantonError[TopologyManagerError] with Product with Serializable
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]) @native() @IntrinsicCandidate()
- 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
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- 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
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- 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]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object CannotVetDueToMissingPackages extends ErrorCode
- Annotations
- @Explanation(explanation = """This error indicates that a package vetting command failed due to packages not existing locally.
|This can be due to either the packages not being present or their dependencies being missing.
|When vetting a package, the package must exist on the participant, as otherwise the participant
|will not be able to process a transaction relying on a particular package.""") @Resolution(resolution = "Ensure that the package exists locally before issuing such a transaction.")
- object DangerousKeyUseCommandRequiresForce extends ErrorCode
- Annotations
- @Explanation(explanation = """This error indicates that a dangerous owner to key mapping authorization was rejected.
|This is the case if a command is run that could break a participant.
|If the command was run to assign a key for the given participant, then the command
|was rejected because the key is not in the participants private store.
|If the command is run on a participant to issue transactions for another participant,
|then such commands must be run with force, as they are very dangerous and could easily break
|the participant.
|As an example, if we assign an encryption key to a participant that the participant does not
|have, then the participant will be unable to process an incoming transaction. Therefore we must
|be very careful to not create such situations.
| """) @Resolution(resolution = "Set force=true if you really know what you are doing.")
- object DangerousVettingCommandsRequireForce extends ErrorCode
- Annotations
- @Explanation(explanation = """This error indicates that a dangerous package vetting command was rejected.
|This is the case if a vetting command, if not run correctly, could potentially lead to a ledger fork.
|The vetting authorization checks the participant for the presence of the given set of
|packages (including their dependencies) and allows only to vet for the given participant id.
|In rare cases where a more centralised topology manager is used, this behaviour can be overridden
|with force. However, if a package is vetted but not present on the participant, the participant will
|refuse to process any transaction of the given domain until the problematic package has been uploaded.""") @Resolution(resolution = "Set force=true if you really know what you are doing.")
- object DependenciesNotVetted extends ErrorCode
- Annotations
- @Explanation(explanation = """This error indicates a vetting request failed due to dependencies not being vetted.
|On every vetting request, the set supplied packages is analysed for dependencies. The
|system requires that not only the main packages are vetted explicitly but also all dependencies.
|This is necessary as not all participants are required to have the same packages installed and therefore
|not every participant can resolve the dependencies implicitly.""") @Resolution(resolution = "Vet the dependencies first and then repeat your attempt.")
- object DisablePartyWithActiveContractsRequiresForce extends ErrorCode
- Annotations
- @Explanation(explanation = """This error indicates that a dangerous PartyToParticipant mapping deletion was rejected.
|If the command is run and there are active contracts where the party is a stakeholder these contracts
|will become inoperable and will never get pruned, leaking storage.
| """) @Resolution(resolution = "Set force=true if you really know what you are doing.")
- object UninitializedParticipant extends ErrorCode
- Annotations
- @Explanation(explanation = """This error indicates that a request involving topology management was attempted on a participant that is not yet initialised.
|During initialisation, only namespace and identifier delegations can be managed.""") @Resolution(resolution = "Initialise the participant and retry.")