Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2bad4a43d81fca158f0d3e4bc33998e50e60c0a5 (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) 2009 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:
 *     Gregoire Dupe (Mia-Software) - initial API and implementation
 */
package org.eclipse.emf.facet.efacet.core.exception;

import org.eclipse.emf.facet.efacet.core.internal.exception.DerivedTypedElementEvaluationException;

/**
 * This exception occurs when something goes wrong during the execution of a
 * query.
 * 
 * @deprecated replaced by {@link DerivedTypedElementEvaluationException} cf.
 *             https://bugs.eclipse.org/bugs/show_bug.cgi?id=374678
 */
@Deprecated
public class QueryExecutionException extends QueryException {
	// This class is a copy of
	// org.eclipse.emf.facet.infra.query.core.ModelQueryExecutionException

	private static final long serialVersionUID = -8464252257666617685L;

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

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

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

}

Back to the top