From fc0b1431ad3b404261309af4a0f1ffbc09acc422 Mon Sep 17 00:00:00 2001 From: Tudor Malene Date: Wed, 13 Feb 2019 13:30:37 +0000 Subject: [PATCH] CORDA-2570 fix KDoc --- .../core/contracts/TransactionVerificationException.kt | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/core/src/main/kotlin/net/corda/core/contracts/TransactionVerificationException.kt b/core/src/main/kotlin/net/corda/core/contracts/TransactionVerificationException.kt index 58c306ab40..7b9026e174 100644 --- a/core/src/main/kotlin/net/corda/core/contracts/TransactionVerificationException.kt +++ b/core/src/main/kotlin/net/corda/core/contracts/TransactionVerificationException.kt @@ -108,13 +108,7 @@ abstract class TransactionVerificationException(val txId: SecureHash, message: S : TransactionVerificationException(txId, "Contract constraints failed for: $contractClass, because multiple attachments providing this contract were attached.", null) /** - * Indicates this transaction violates the "no overlap" rule: two attachments are trying to provide the same file - * path. Whereas Java classpaths would normally allow that with the first class taking precedence, this is not - * allowed in transactions for security reasons. This usually indicates that two separate apps share a dependency, - * in which case you could try 'shading the fat jars' to rename classes of dependencies. Or you could manually - * attach dependency JARs when building the transaction. - * - * @property contractClass The fully qualified class name of the failing contract. + * Indicates that the same attachment has been added multiple times to a transaction. */ @KeepForDJVM class DuplicateAttachmentsRejection(txId: SecureHash, val attachmentId: Attachment)