blob: c6c854929de7be34fb6e764d920924f3a6252dd8 [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 to denote that the operation required to create a new store with a name of an already existing store.
*/
public class StoreExistsException extends BadRequestException {
/** because it's serializable ... */
private static final long serialVersionUID = 1L;
/** create exception with description and causing exception. */
public StoreExistsException(final String message, final Throwable cause) {
super(message, cause);
}
/** create exception with description only. */
public StoreExistsException(final String message) {
super(message);
}
/** create exception from causing exception. */
public StoreExistsException(final Throwable cause) {
super(cause);
}
}