blob: 9248b25bc0396d20a678703974303e608aa64c1f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License_Identifier: EPL-2.0
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease;
public class BreakException extends ScriptExecutionException {
private static final long serialVersionUID = -4157933914171239048L;
private Object fCondition = null;
public BreakException() {
}
public BreakException(final Object condition) {
super();
fCondition = condition;
}
public Object getCondition() {
return fCondition;
}
}