/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck.repository; import java.util.Collection; /** * Thrown when any error occurs during {@link TckRepository#createAll(Collection)} * or {@link TckRepository#removeAll()} invocation. Usually wraps exceptions * occurred during the storing/removing. * * @author Yevhenii Voevodin */ public class TckRepositoryException extends Exception { public TckRepositoryException(String message) { super(message); } public TckRepositoryException(String message, Throwable cause) { super(message, cause); } }