MailException.java
/*
* Copyright © 2024-2025 The CTAN Team and individual authors
*
* This file is distributed under the 3-clause BSD license.
* See file LICENSE for details.
*/
package org.ctan.site.services.mail;
/**
* The class <code>MailException</code> contains the Exception for the
* MailService.
*/
public class MailException extends Exception {
/**
* The field <code>serialVersionUID</code> contains the version number.
*/
private static final long serialVersionUID = 1L;
/**
* This is the constructor for <code>MailException</code>.
*
* @param e the cause
*/
public MailException(Exception e) {
super(e);
}
/**
* This is the constructor for <code>MailException</code>.
*
* @param message the message
*/
public MailException(String message) {
super(message);
}
}