001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.io; 003 004/** 005 * All exceptions resulting from a user cancellation during any import should implement this interface. 006 * @since 6621 007 */ 008public interface ImportCancelException { 009 010}