Fix typo in error message

Motivation:

Fix typo in error message.

Modification:

could not fine -> could not find
This commit is contained in:
Paul Gross 2017-08-25 13:15:58 -07:00 committed by Norman Maurer
parent 89ecb4b4a4
commit 0b0de76adc
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ final class PemReader {
safeClose(in);
}
} catch (FileNotFoundException e) {
throw new KeyException("could not fine key file: " + file);
throw new KeyException("could not find key file: " + file);
}
}