All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kz.greetgo.security.crypto.errors.NotEqualsIdFieldLengths Maven / Gradle / Ivy

There is a newer version: 0.0.12
Show newest version
package kz.greetgo.security.crypto.errors;

public class NotEqualsIdFieldLengths extends RuntimeException {
  public NotEqualsIdFieldLengths(int privateKeyIdFieldLength, int publicKeyIdFieldLength) {
    super("If table same for both keys, then id field lengths MUST be equals,\n" +
      "    but privateKey.idField length = '" + privateKeyIdFieldLength + "'\n" +
      "    and publicKey.idField length = '" + publicKeyIdFieldLength + "'");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy