view src/goodjava/mail/MailException.java @ 1821:d28f5ed56454

fix stringify empty list
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 09 Jul 2024 07:17:41 -0600
parents d3728e3e5af3
children
line wrap: on
line source

package goodjava.mail;


public class MailException extends Exception {

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