FileDocCategorySizeDatePackage
SMTPException.javaAPI DocExample300Thu Jan 06 16:34:58 GMT 2000None

SMTPException

public class SMTPException extends IOException
This is like an IOException, but it includes a Sendmail-style error number in addition to the error message String.

Fields Summary
int
ret
Constructors Summary
SMTPException(int ret, String s)

		super(s);
		this.ret = ret;
	
Methods Summary
intgetCode()

		return ret;