source: trunk/org/expeditee/simple/UnitTestFailedException.java@ 4

Last change on this file since 4 was 4, checked in by davidb, 16 years ago

Starting source code to Expeditee

File size: 296 bytes
Line 
1package org.expeditee.simple;
2
3public class UnitTestFailedException extends RuntimeException {
4 static final long serialVersionUID = -7034897190745766939L;
5
6 public UnitTestFailedException(String expected, String result) {
7 super("Assert expected [" + expected + "] got [" + result + "]");
8 }
9}
Note: See TracBrowser for help on using the repository browser.