/* $Id$ */ 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); } }