programming-examples/java/XML/Smtp mailer exception.java

19 lines
327 B
Java
Raw Normal View History

2019-11-15 12:59:38 +01:00
Smtp mailer exception
package com.ack.j2ee.javamail;
/**
* Exception class for SMTP mailer exceptions
*/
public class SmtpMailerException extends Exception {
/**
* Constructor
* @param str The exception error message
*/
public SmtpMailerException( String str ) {
super( str );
}
}