blob: ea8be4d3ed9693f152bc6fb92faeac8d6fd470a1 [file] [log] [blame]
/**
* Copyright (c) 2012, 2019 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:
* Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
*/
package org.eclipse.modisco.facet.util.emf.ui.internal.exported.util.wizard.page.exception;
/**
* @since 0.3
*/
public class SelectedEClassifierRuntimeException extends RuntimeException {
private static final long serialVersionUID = -1021467669726982508L;
public SelectedEClassifierRuntimeException() {
super(
"List not totally loaded. Check if the list's job is done before doing the selection."); //$NON-NLS-1$
}
public SelectedEClassifierRuntimeException(final String message) {
super(message);
}
public SelectedEClassifierRuntimeException(final String message,
final Throwable cause) {
super(message, cause);
}
public SelectedEClassifierRuntimeException(final Throwable cause) {
super(cause);
}
}