All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mchange.net.SmtpException Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.mchange.net;

public class SmtpException extends ProtocolException
{
  int resp_num;

  public SmtpException()
    {super();}

  public SmtpException(String msg)
    {super(msg);}

  public SmtpException(int num, String msg)
    {
      this(msg);
      this.resp_num = num;
    }

  public int getSmtpResponseNumber()
    {return resp_num;}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy