View Javadoc

1   package com.ozacc.mail.mock;
2   
3   /***
4    * ´?ÂÔ¤¬Ë?¤¿¤µ¤?¤Ê¤«¤Ã¤¿»?¤Ë¥¹¥ú½¼¤µ¤?¤?Èó¥Á¥§¥Ã¥¯Îã³°¡£
5    * 
6    * @author Tomohiro Otsuka
7    * @version $Id$
8    */
9   public class ExpectationNotMetException extends RuntimeException {
10  
11  	public ExpectationNotMetException() {
12  		super();
13  	}
14  
15  	public ExpectationNotMetException(String message) {
16  		super(message);
17  	}
18  
19  	public ExpectationNotMetException(Throwable cause) {
20  		super(cause);
21  	}
22  
23  	public ExpectationNotMetException(String message, Throwable cause) {
24  		super(message, cause);
25  	}
26  
27  }