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

io.permazen.core.InvalidSchemaException Maven / Gradle / Ivy

Go to download

Permazen core API classes which provide objects, fields, indexes, queries, and schema management on top of a key/value store.

The newest version!

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

package io.permazen.core;

/**
 * Thrown by {@link Database#createTransaction} when the provided schema is invalid.
 */
@SuppressWarnings("serial")
public class InvalidSchemaException extends DatabaseException {

    InvalidSchemaException() {
    }

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

    public InvalidSchemaException(Throwable cause) {
        super(cause);
    }

    public InvalidSchemaException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy