//#########################################################
// AttachmentException
// The AttachmentException class extends SystemException.
// It is used by the servlets to report an error resulting
// from an incomplete attachment of data stream(s).  This
// exception can be then used to retreive the data streams
// that have not been attached.
//#########################################################
package Servlet.Interface;

public class AttachmentException extends Servlet.Interface.SystemException
{
    String[] MissingAttachments;

    public AttachmentException(int status, String ExceptionMessage, String[] MissingAttachments)
    {
        super(status,ExceptionMessage);
        this.MissingAttachments = MissingAttachments;
    }

    public String[] getMissingAttachments()
    {
        return MissingAttachments;
    }
}