comparison src/org/tmatesoft/hg/core/HgOutgoingCommand.java @ 295:981f9f50bb6c

Issue 11: Error log facility. SessionContext to share common facilities
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 16 Sep 2011 05:35:32 +0200
parents 6d1804fe0ed7
children d68dcb3b5f49
comparison
equal deleted inserted replaced
294:32890bab7209 295:981f9f50bb6c
107 /** 107 /**
108 * Complete information about outgoing changes 108 * Complete information about outgoing changes
109 * 109 *
110 * @param handler delegate to process changes 110 * @param handler delegate to process changes
111 */ 111 */
112 public void executeFull(final HgChangesetHandler handler) throws HgRemoteConnectionException, HgException, CancelledException { 112 public void executeFull(final HgChangesetHandler handler) throws HgRemoteConnectionException, HgCallbackTargetException, CancelledException {
113 if (handler == null) { 113 if (handler == null) {
114 throw new IllegalArgumentException("Delegate can't be null"); 114 throw new IllegalArgumentException("Delegate can't be null");
115 } 115 }
116 final ProgressSupport ps = getProgressSupport(handler); 116 final ProgressSupport ps = getProgressSupport(handler);
117 final CancelSupport cs = getCancelSupport(handler); 117 final CancelSupport cs = getCancelSupport(handler);