1 package com.ozacc.mail;
2
3 /***
4 * ¥á¡¼¥?´ØÏ¢Îã³°¤Îµ¬Ä?¥¯¥é¥¹¡£RuntimeException¤ò·Ñ¾µ¤·¤Æ¤¤¤Þ¤¹¡£
5 *
6 * @author Tomohiro Otsuka
7 * @version $Id: MailException.java,v 1.1 2004/09/04 09:07:22 otsuka Exp $
8 */
9 public class MailException extends RuntimeException {
10
11 /***
12 * @param message
13 */
14 public MailException(String message) {
15 super(message);
16 }
17
18 /***
19 * @param message
20 * @param cause
21 */
22 public MailException(String message, Throwable cause) {
23 super(message, cause);
24 }
25
26 }