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

org.jsimpledb.jsck.MissingKey Maven / Gradle / Ivy

Go to download

JSimpleDB analog to UNIX fsck(8) command for checking the consistency of, and repairing any corruption in, a JSimpleDB key/value database

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb.jsck;

/**
 * Represents a missing key in a JSimpleDB key/value database.
 */
public class MissingKey extends Issue {

    public MissingKey(byte[] key, byte[] value) {
        this("missing key", key, value);
    }

    public MissingKey(String description, byte[] key, byte[] value) {
        super(description, key, null, value);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy