< prev index next >

src/java.base/share/classes/sun/net/smtp/SmtpProtocolException.java

Print this page




  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.net.smtp;
  27 
  28 import java.io.IOException;
  29 
  30 /**
  31  * This exception is thrown when unexpected results are returned during
  32  * an SMTP session.
  33  */
  34 public class SmtpProtocolException extends IOException {

  35     private static final long serialVersionUID = -7547136771133814908L;
  36 
  37     SmtpProtocolException(String s) {
  38         super(s);
  39     }
  40 }


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.net.smtp;
  27 
  28 import java.io.IOException;
  29 
  30 /**
  31  * This exception is thrown when unexpected results are returned during
  32  * an SMTP session.
  33  */
  34 public class SmtpProtocolException extends IOException {
  35     @java.io.Serial
  36     private static final long serialVersionUID = -7547136771133814908L;
  37 
  38     SmtpProtocolException(String s) {
  39         super(s);
  40     }
  41 }
< prev index next >