We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d19941 commit 9461ebdCopy full SHA for 9461ebd
projects/kediatr-core/src/main/kotlin/com/trendyol/kediatr/exceptions.kt
@@ -43,12 +43,5 @@ class AggregateException(
43
* The collection of exceptions that were aggregated.
44
* Contains all the individual exceptions that occurred during the operation.
45
*/
46
- val exceptions: Collection<Throwable>
47
-) : RuntimeException() {
48
- /**
49
- * Constructor that accepts an array of exceptions.
50
- *
51
- * @param exceptions Array of exceptions to aggregate
52
- */
53
- constructor(exceptions: Array<Throwable>) : this(exceptions.toList())
54
-}
+ val exceptions: Iterable<Throwable>
+) : RuntimeException()
0 commit comments