Newer
Older
marking / src / main / java / report / SendException.java
package report;

/**
 *
 * @author Mark George <mark.george@otago.ac.nz>
 */
public class SendException extends RuntimeException {

	public SendException(Throwable cause) {
		super(cause);
	}

}