/*
 * AliveAntEvent.java
 *
 * Created on 28 November 2006, 14:19
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package ants.event;

/**
 *
 * @author James Hamilton
 */
public class AliveAntEvent extends AntEvent {
    public AliveAntEvent(Object source) { super(source); }
}

