removed invalid message from exception constructor

This commit is contained in:
Philipp Crocoll 2014-11-27 05:47:37 +01:00
parent 415049af7a
commit 80d7c8fdd9
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public class ImporterV3 {
hdr.loadFromFile(filebuf, 0 );
if( (hdr.signature1 != PwDbHeader.PWM_DBSIG_1) || (hdr.signature2 != PwDbHeaderV3.DBSIG_2) ) {
throw new InvalidDBSignatureException("Invalid database signature!");
throw new InvalidDBSignatureException();
}
if( !hdr.matchesVersion() ) {