comparison src/goodjava/mail/SmtpException.java @ 1582:f28cc30d56cb

start goodjava/mail
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 06 Mar 2021 21:13:34 -0700
parents
children
comparison
equal deleted inserted replaced
1581:dbf63bef4b86 1582:f28cc30d56cb
1 package goodjava.mail;
2
3
4 public class SmtpException extends Exception {
5
6 public SmtpException(String msg) {
7 super(msg);
8 }
9 }