All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ozacc.mail.mock.AssertionFailedException Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.ozacc.mail.mock;

/**
 * MockSendMailで期待メールと送信メールが一致しなかった時にスローされる非チェック例外。
 * 
 * @since 1.0
 * @author Tomohiro Otsuka
 * @version $Id: AssertionFailedException.java,v 1.2 2004/09/13 07:07:42 otsuka Exp $
 */
public class AssertionFailedException extends RuntimeException {

	public AssertionFailedException() {
		super();
	}

	public AssertionFailedException(String message) {
		super(message);
	}

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

	public AssertionFailedException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy