object TopologyManagerError extends TopologyManagerErrorGroup
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TopologyManagerError
- TopologyManagerErrorGroup
- ErrorGroup
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- abstract class DomainErrorGroup extends ErrorGroup
- abstract class ParticipantErrorGroup extends ErrorGroup
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() @HotSpotIntrinsicCandidate()
- 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() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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 CertificateGenerationError extends ErrorCode
- Annotations
- @Explanation("""This error indicates that the desired certificate could not be created.""") @Resolution("""Inspect the underlying error for details.""")
- object DuplicateTransaction extends ErrorCode
- Annotations
- @Explanation("""This error indicates that a transaction has already been added previously.""") @Resolution("""Nothing to do as the transaction is already registered. Note however that a revocation is " +
final. If you want to re-enable a statement, you need to re-issue an new transaction.""")
- object InternalError extends ErrorCode
- Annotations
- @Explanation("""This error indicates that there was an internal error within the topology manager.""") @Resolution("Inspect error message for details.")
- object InvalidSignatureError extends ErrorCode
- Annotations
- @Explanation("""This error indicates that the uploaded signed transaction contained an invalid signature.""") @Resolution("Ensure that the transaction is valid and uses a crypto version understood by this participant.")
- object MappingAlreadyExists extends ErrorCode
- Annotations
- @Explanation("""This error indicates that a topology transaction would create a state that already exists and has been authorized with the same key.""") @Resolution("""Your intended change is already in effect.""")
- object NoAppropriateSigningKeyInStore extends ErrorCode
- Annotations
- @Explanation("""This error results if the topology manager did not find a secret key in its store to authorize a certain topology transaction.""") @Resolution("""Inspect your topology transaction and your secret key store and check that you have the
appropriate certificates and keys to issue the desired topology transaction. If the list of candidates is empty,
then you are missing the certificates.""")
- object NoCorrespondingActiveTxToRevoke extends ErrorCode
- Annotations
- @Explanation("""This error indicates that the attempt to add a removal transaction was rejected, as the mapping / element affecting the removal did not exist.""") @Resolution("""Inspect the topology state and ensure the mapping and the element id of the active transaction you are trying to revoke matches your revocation arguments.""")
- object PublicKeyNotInStore extends ErrorCode
- Annotations
- @Explanation("""This error indicates that a command contained a fingerprint referring to a public key not being present in the public key store.""") @Resolution("Upload the public key to the public key store using $node.keys.public.load(.) before retrying.")
- object RemovingLastKeyMustBeForced extends ErrorCode
- Annotations
- @Explanation("""This error indicates that the attempted key removal would remove the last valid key of the given entity, making the node unusuable.""") @Resolution("""Add the `force = true` flag to your command if you are really sure what you are doing.""")
- object SecretKeyNotInStore extends ErrorCode
- Annotations
- @Explanation("""This error indicates that the secret key with the respective fingerprint can not be found.""") @Resolution("Ensure you only use fingerprints of secret keys stored in your secret key store.")
- object UnauthorizedTransaction extends ErrorCode
- Annotations
- @Explanation("""This error indicates that the attempt to add a transaction was rejected, as the signing key is not authorized within the current state.""") @Resolution("""Inspect the topology state and ensure that valid namespace or identifier delegations of the signing key exist or upload them before adding this transaction.""")