blob: 4059aeaee864e2658e5e51ba8b910c1c2e7c7253 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Mia-Software 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
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Grégoire Dupé (Mia-Software) - Bug 480654 - IllegalStateException in NavigationView.addEObjects (611)
*******************************************************************************/
package org.eclipse.modisco.facet.efacet.ui.internal.view;
public class NavigationViewResourceSetException extends Exception {
private static final long serialVersionUID = -2247657462989799934L;
public NavigationViewResourceSetException() {
super();
}
public NavigationViewResourceSetException(final String message) {
super(message);
}
public NavigationViewResourceSetException(final Throwable cause) {
super(cause);
}
public NavigationViewResourceSetException(final String message,
final Throwable cause) {
super(message, cause);
}
}