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

com.infomaximum.database.exception.KeyCorruptedException Maven / Gradle / Ivy

The newest version!
package com.infomaximum.database.exception;

public class KeyCorruptedException extends RuntimeException {

    public KeyCorruptedException(final byte[] key) {
        super("Key corrupted, key length is " + key.length);
    }

    public KeyCorruptedException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy