object Error extends Serializable
- Alphabetic
- By Inheritance
- Error
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class ChoiceGuardFailed(coid: ContractId, templateId: TypeConName, choiceName: ChoiceName, byInterface: Option[TypeConName]) extends Error with Product with Serializable
A choice guard returned false, invalidating some expectation.
- final case class ContractDoesNotImplementInterface(interfaceId: TypeConName, coid: ContractId, templateId: TypeConName) extends Error with Product with Serializable
We tried to fetch / exercise a contract by interface, but the contract does not implement this interface.
- final case class ContractDoesNotImplementRequiringInterface(requiringInterfaceId: TypeConName, requiredInterfaceId: TypeConName, coid: ContractId, templateId: TypeConName) extends Error with Product with Serializable
We tried to exercise a contract by required interface, but the contract does not implement the requiring interface.
- final case class ContractIdComparability(globalCid: V1) extends Error with Product with Serializable
- final case class ContractIdInContractKey(key: Value) extends Error with Product with Serializable
- final case class ContractKeyNotFound(key: GlobalKey) extends Error with Product with Serializable
Fetch-by-key failed
- final case class ContractKeyNotVisible(coid: ContractId, key: GlobalKey, actAs: Set[Party], readAs: Set[Party], stakeholders: Set[Party]) extends Error with Product with Serializable
- final case class ContractNotActive(coid: ContractId, templateId: TypeConName, consumedBy: NodeId) extends Error with Product with Serializable
A fetch or an exercise on a transaction-local contract that has already been consumed.
- final case class ContractNotFound(cid: ContractId) extends Error with Product with Serializable
- final case class CreateEmptyContractKeyMaintainers(templateId: TypeConName, arg: Value, key: Value) extends Error with Product with Serializable
A create with a contract key failed because the list of maintainers was empty
- final case class DisclosurePreprocessing(error: DisclosurePreprocessing.Error) extends Error with Product with Serializable
- final case class DuplicateContractKey(key: GlobalKey) extends Error with Product with Serializable
Two contracts with the same key were active at the same time.
Two contracts with the same key were active at the same time. See com.daml.lf.transaction.Transaction.DuplicateContractKey for more details.
- final case class FailedAuthorization(nid: NodeId, fa: ledger.FailedAuthorization) extends Error with Product with Serializable
There was an authorization failure during execution.
- final case class FetchEmptyContractKeyMaintainers(templateId: TypeConName, key: Value) extends Error with Product with Serializable
A fetch or lookup of a contract key without maintainers
- final case class InconsistentContractKey(key: GlobalKey) extends Error with Product with Serializable
The ledger provided an inconsistent view of a contract key.
The ledger provided an inconsistent view of a contract key. See com.daml.lf.transaction.Transaction.DuplicateContractKey for more details.
- final case class Limit(error: Limit.Error) extends Error with Product with Serializable
- final case class TemplatePreconditionViolated(templateId: TypeConName, optLocation: Option[Location], arg: Value) extends Error with Product with Serializable
Template pre-condition (ensure) evaluated to false and the transaction was aborted.
Template pre-condition (ensure) evaluated to false and the transaction was aborted. Note that the compiler will throw instead of returning False for code in LF >= 1.14 so this will never be thrown for newer versions.
- final case class UnhandledException(exceptionType: Type, value: Value) extends Error with Product with Serializable
Unhandled exceptions
- final case class UserError(message: String) extends Error with Product with Serializable
User initiated error, via e.g.
User initiated error, via e.g. 'abort' or 'assert'
- final case class WronglyTypedContract(coid: ContractId, expected: TypeConName, actual: TypeConName) extends Error with Product with Serializable
We tried to fetch / exercise a contract of the wrong type -- see <https://github.com/digital-asset/daml/issues/1005>.
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
- 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 DisclosurePreprocessing extends Serializable
- object InconsistentDisclosureTable
- object Limit extends Serializable
- case object NonComparableValues extends Error with Product with Serializable