1 package com.ozacc.mail;
2
3 /***
4 * SMTP¥µ¡¼¥ÐÀܳ¤Îǧ¾Ú¤Ë¼ºÇÔ¤·¤¿ºÝ¤Ë¥¹¥ú½¼¤µ¤?¤?Îã³°¡£
5 *
6 * @author Tomohiro Otsuka
7 * @version $Id: MailAuthenticationException.java,v 1.1 2004/09/04 09:07:22 otsuka Exp $
8 */
9 public class MailAuthenticationException extends MailException {
10
11 /***
12 * @param message
13 */
14 public MailAuthenticationException(String message) {
15 super(message);
16 }
17
18 /***
19 * @param message
20 * @param cause
21 */
22 public MailAuthenticationException(String message, Throwable cause) {
23 super(message, cause);
24 }
25
26 public MailAuthenticationException(Throwable cause) {
27 super("Authentication failed: " + cause.getMessage(), cause);
28 }
29
30 }
31