/**
 * A message containing normal emergency 
 * information and a supplemental alert
 *
 * @version 1.0
 * @author  David Bernstein, James Madison University
 */
public class Alert extends EmergencyMessage
{
    private String supplement;


    /**
     * Construct a new Alert
     *
     * @param message      The main mesage
     * @param supplement   The supplemental information
     *
     */
    public Alert(String message, String supplement)
    {
	super(message);
	this.supplement = supplement;
    }



    /**
     * Return the supplemental information
     *
     * @return   The supplemental information
     */
    public String getSupplement()
    {
	return supplement;
    }
}


