001package co.codewizards.cloudstore.core.progress;
002
003/**
004 * Exception thrown to exit a long-running method
005 * after the user cancelled it. If code checking {@link ProgressMonitor#isCanceled()}
006 * finds <code>true</code>, it should throw this exception.
007 */
008public class OperationCanceledException extends RuntimeException
009{
010        private static final long serialVersionUID = 1L;
011
012        public OperationCanceledException() { }
013
014        public OperationCanceledException(String message) {
015                super(message);
016        }
017}