blob: e34e5ab9719bd122a70a9ff18ca120bcc8b42175 [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 {
boolean isComparisonFailure(Throwable throwable);
/**
* @param t a {@link Throwable}
* @return the stack trace for the given {@link Throwable}.
*/
String getTrace(Throwable t);
}