| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| OutOfRangePortException |
|
| 1.0;1 |
| 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 | 0 | public final class OutOfRangePortException extends AbstractPortException { |
| 10 | private static final long serialVersionUID = -8357518994968551990L; | |
| 11 | ||
| 12 | public OutOfRangePortException(Exception e, int port) { | |
| 13 | 1 | super(e, port); |
| 14 | 1 | } |
| 15 | } |