Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0c8f96d705ef4e41a7a55acd3e3e9ad3e503a8a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
 * Copyright (c) 2012 Mia-Software.
 *  
 * 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:
 *  	Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
 */
package org.eclipse.emf.facet.util.emf.ui.internal.exported.util.wizard.page.exception;

/**
 * Exception when the list (where the selection has to be done) is not totally
 * loaded.
 * 
 * @since 0.3
 */
public class SelectedEPackageRuntimeException extends RuntimeException {

	private static final long serialVersionUID = -5317379187255054199L;

	public SelectedEPackageRuntimeException() {
		super(
				"List not totally loaded. Check if the list's job is done before doing the selection."); //$NON-NLS-1$
	}

	public SelectedEPackageRuntimeException(final String message) {
		super(message);
	}

	public SelectedEPackageRuntimeException(final String message,
			final Throwable cause) {
		super(message, cause);
	}

	public SelectedEPackageRuntimeException(final Throwable cause) {
		super(cause);
	}
}

Back to the top