com.persistit.exception.UnderSpecifiedVolumeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akiban-persistit Show documentation
Show all versions of akiban-persistit Show documentation
Java B+Tree Key-Value Store Library
/**
* Copyright © 2005-2012 Akiban Technologies, Inc. All rights reserved.
*
* This program and the accompanying materials are made available
* under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* This program may also be available under different license terms.
* For more information, see www.akiban.com or contact [email protected].
*
* Contributors:
* Akiban Technologies, Inc.
*/
package com.persistit.exception;
import com.persistit.VolumeSpecification;
/**
* Thrown when the Persistit attempts to open a Volume with an incomplete
* {@link VolumeSpecification}, for example, with a missing page size.
*
* @version 1.0
*/
public class UnderSpecifiedVolumeException extends VolumeNotFoundException {
private static final long serialVersionUID = -5547869858193325359L;
public UnderSpecifiedVolumeException() {
super();
}
public UnderSpecifiedVolumeException(final String msg) {
super(msg);
}
}