summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/directory/DeliverySMTPSection.java
blob: e09c8841e2835ae9855336fc41ce8b5ce435a2eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.noreply.fancydress.directory;

import org.noreply.fancydress.directory.parser.*;
import org.noreply.fancydress.status.*;

/**
 * This class holds the information supplied in a Delivery/SMTP section of a
 * server descriptor.
 *
 * @see ServerDescriptor
 */
public class DeliverySMTPSection extends DeliveryMBOXSMTPSection {

	/**
	 * Construct a Delivery/SMTP section
	 *
	 * @param section the section to parse.
	 * @throws Mix3BadServerUnrecognizedVersionException if the Version in the section is not recognized.
	 * @throws Mix3BadServerFormatException if the Section is syntactially invalid.
	 */
	public DeliverySMTPSection(DirectorySection section)
		throws Mix3BadServerFormatException
	{
		// FIXME: assert that the section's name is Delivery/SMTP
		super(section);
	}
}