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

io.permazen.jsck.MissingKey Maven / Gradle / Ivy

Go to download

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

There is a newer version: 5.1.0
Show newest version

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

package io.permazen.jsck;

/**
 * Represents a missing key in a Permazen 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 - 2024 Weber Informatics LLC | Privacy Policy