
fitlibrary.exception.IgnoredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitlibrary Show documentation
Show all versions of fitlibrary Show documentation
FitLibrary provides general-purpose fixtures (and runners) for storytests with Fit and FitNesse.
The newest version!
/*
* Copyright (c) 2006 Rick Mugridge, www.RimuResearch.com
* Released under the terms of the GNU General Public License version 2 or later.
*/
package fitlibrary.exception;
/**
* An exception that's ignored as the problem has already been signalled
* locally in the table.
*/
public class IgnoredException extends RuntimeException {
private Exception ignoredException = null;
public IgnoredException(Exception ignoredException) {
this.ignoredException = ignoredException;
}
public IgnoredException() {
//
}
@Override
public String toString() {
return "Ignored: "+ignoredException;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy