/*
 * Created on Nov 1, 2004
 * Copyright (C) Andrea Schweer, 2004
 *
 * This file is part of the Greenstone Alerting Service.
 * Refer to the COPYING file in the base directory of this package
 * for licensing information.
 */
package org.greenstone.gsdlas.profiles;

/**
 * Exception thrown when a Predicate cannot be created due to a syntax error.
 * @author schweer
 * 
 */
public class ParseException extends Exception {

    /**
     * @param message the exception message.
     * @see Exception#Exception(String)
     */
    public ParseException(String message) {
        super(message);
    }

}