blob: e88002d39b24c49eb6e65694135c66a51e019ece [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 by object read or info operations if no object exists with the given ID in the selected store.
*/
public class NoSuchObjectException extends BadRequestException {
/** because it's serializable ... */
private static final long serialVersionUID = 1L;
/** create exception with description and causing exception. */
public NoSuchObjectException(final String message, final Throwable cause) {
super(message, cause);
}
/** create exception with description only. */
public NoSuchObjectException(final String message) {
super(message);
}
/** create exception from causing exception. */
public NoSuchObjectException(final Throwable cause) {
super(cause);
}
}