mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 05:17:36 +03:00
fix: Error with coordinator
This commit is contained in:
parent
eb14dadb3c
commit
8ce9757b7c
4 changed files with 18 additions and 7 deletions
|
@ -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())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue