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.statSize != expectedSize -> {
|
||||
throw UnexpectedExportKeysFileSizeException(
|
||||
expectedFileSize = output.statSize,
|
||||
actualFileSize = expectedSize
|
||||
expectedFileSize = expectedSize,
|
||||
actualFileSize = output.statSize
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue