You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
327 B
Java

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 );
}
}