001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.plugins.eventbus.gui.progress;
003
004import java.util.EventObject;
005
006/**
007 * Event fired when a task is cancelled.
008 */
009public class OperationCancelledEvent extends EventObject {
010
011    private static final long serialVersionUID = 1L;
012
013    /**
014     * Constructs a new {@code OperationCancelledEvent}.
015     * @param source object on which the Event initially occurred
016     */
017    public OperationCancelledEvent(Object source) {
018        super(source);
019    }
020}