View Javadoc
1 /* 2 * @(#)SmtpProtocolException.java 1.13 01/12/03 3 * 4 * Copyright 2002 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package org.masukomi.aspirin.core; 9 10 import java.io.IOException; 11 12 /*** 13 * This exeception is thrown when unexpected results are returned during 14 * an SMTP session. 15 */ 16 public class SmtpProtocolException extends IOException { 17 SmtpProtocolException(String s) { 18 super(s); 19 } 20 } 21

This page was automatically generated by Maven