blob: 6ca1c9ec0317f748886b9c0644b729ea458c4d75 [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease;
public class ExitException extends BreakException {
private static final long serialVersionUID = 9134574495641360069L;
public ExitException() {
}
public ExitException(final Object condition) {
super(condition);
}
}