• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

hyperledger / identus-cloud-agent / 10793991050

10 Sep 2024 01:56PM CUT coverage: 48.504% (-4.5%) from 52.962%
10793991050

push

web-flow
build: sbt and plugins dependency update (#1337)

Signed-off-by: Hyperledger Bot <hyperledger-bot@hyperledger.org>
Signed-off-by: Yurii Shynbuiev <yurii.shynbuiev@iohk.io>
Co-authored-by: Hyperledger Bot <hyperledger-bot@hyperledger.org>
Co-authored-by: Yurii Shynbuiev <yurii.shynbuiev@iohk.io>

7406 of 15269 relevant lines covered (48.5%)

0.49 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/castor/src/main/scala/org/hyperledger/identus/castor/core/model/error/package.scala
1
package org.hyperledger.identus.castor.core.model
2

3
package object error {
4

5
  sealed trait DIDOperationError
6
  object DIDOperationError {
7
    final case class DLTProxyError(msg: String, cause: Throwable) extends DIDOperationError {
8
      def getMessage = msg + ": " + cause.getMessage()
×
9
    }
10
    final case class UnexpectedDLTResult(msg: String) extends DIDOperationError
11
    final case class ValidationError(cause: OperationValidationError) extends DIDOperationError
12
  }
13

14
  sealed trait DIDResolutionError
15

16
  object DIDResolutionError {
17
    final case class DLTProxyError(msg: String, cause: Throwable) extends DIDResolutionError {
18
      def getMessage = msg + ": " + cause.getMessage()
×
19
    }
20
    final case class UnexpectedDLTResult(msg: String) extends DIDResolutionError
21
    final case class ValidationError(cause: OperationValidationError) extends DIDResolutionError
22
  }
23

24
  sealed trait OperationValidationError
25

26
  object OperationValidationError {
27
    final case class TooManyDidPublicKeyAccess(limit: Int, access: Option[Int]) extends OperationValidationError
28
    final case class TooManyDidServiceAccess(limit: Int, access: Option[Int]) extends OperationValidationError
29
    final case class InvalidArgument(msg: String) extends OperationValidationError
30
    final case class InvalidMasterKeyData(ids: Seq[String]) extends OperationValidationError
31
  }
32

33
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc