fix: Error with coordinator

This commit is contained in:
J-Jamet 2023-08-05 17:06:07 +02:00
parent eb14dadb3c
commit 8ce9757b7c
4 changed files with 18 additions and 7 deletions

View file

@ -27,7 +27,7 @@ import java.io.PrintWriter
abstract class DatabaseException : Exception {
var innerMessage: String? = null
var parameters: (Array<out String>)? = null
var parameters = mutableListOf<String>()
var mThrowable: Throwable? = null
constructor() : super()
@ -94,7 +94,10 @@ class NoMemoryDatabaseException(exception: Throwable) : DatabaseInputException(e
class DuplicateUuidDatabaseException(type: Type, uuid: NodeId<*>) : DatabaseInputException() {
init {
parameters = arrayOf(type.name, uuid.toString())
parameters.apply {
add(type.name)
add(uuid.toString())
}
}
}