blob: f5b8e3c7fe16bc85c9c36c69739d5299cb722f97 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* David Saff (saff@mit.edu) - initial API and implementation
* (bug 102632: [JUnit] Support for JUnit 4.)
*******************************************************************************/
package org.eclipse.jdt.internal.junit.runner;
public interface IClassifiesThrowables {
public abstract boolean isComparisonFailure(Throwable throwable);
/**
* @param t a {@link Throwable}
* @return the stack trace for the given {@link Throwable}.
*/
public abstract String getTrace(Throwable t);
}