fixing exception message parameter ordering
This commit is contained in:
parent
19d1d981c3
commit
399b2a13ee
|
@ -47,8 +47,8 @@ class KeysExporter @Inject constructor(
|
||||||
output == null -> throw IllegalStateException("Exported file not found")
|
output == null -> throw IllegalStateException("Exported file not found")
|
||||||
output.statSize != expectedSize -> {
|
output.statSize != expectedSize -> {
|
||||||
throw UnexpectedExportKeysFileSizeException(
|
throw UnexpectedExportKeysFileSizeException(
|
||||||
expectedFileSize = output.statSize,
|
expectedFileSize = expectedSize,
|
||||||
actualFileSize = expectedSize
|
actualFileSize = output.statSize
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue