blob: 56f31e7e332af30254228ebf2ed6ef408f5b129e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 Attensity Europe GmbH and brox IT Solutions GmbH. 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
*
* Contributors: Juergen Schumacher (Attensity Europe GmbH) - initial implementation
**********************************************************************************************************************/
package org.eclipse.smila.objectstore;
/**
* Thrown if no store exists with the given name.
*/
public class NoSuchStoreException extends BadRequestException {
/** because it's serializable ... */
private static final long serialVersionUID = 1L;
/** create exception with description and causing exception. */
public NoSuchStoreException(final String message, final Throwable cause) {
super(message, cause);
}
/** create exception with description only. */
public NoSuchStoreException(final String message) {
super(message);
}
/** create exception from causing exception. */
public NoSuchStoreException(final Throwable cause) {
super(cause);
}
}