/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * 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: * Florent Guillaume */ package org.eclipse.ecr.core.storage; import javax.resource.ResourceException; /** * Exception pertaining to the storage backend. * * @author Florent Guillaume */ public class StorageException extends ResourceException { private static final long serialVersionUID = 1L; public StorageException() { } public StorageException(String message) { super(message); } public StorageException(String message, Throwable cause) { super(message, cause); } public StorageException(Throwable cause) { super(cause); } }