// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.gui.conflict.pair.properties; public class OperationCancelledException extends Exception { public OperationCancelledException() { super(); // TODO Auto-generated constructor stub } public OperationCancelledException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public OperationCancelledException(String message) { super(message); // TODO Auto-generated constructor stub } public OperationCancelledException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }