1 package com.nilhcem.fakesmtp.core.exception;
2
3 /**
4 * Thrown if the SMTP port is out of range while trying to start the server.
5 *
6 * @author Nilhcem
7 * @since 1.0
8 */
9 public final class OutOfRangePortException extends AbstractPortException {
10 private static final long serialVersionUID = -8357518994968551990L;
11
12 public OutOfRangePortException(Exception e, int port) {
13 super(e, port);
14 }
15 }