Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: de798fa52bafe9293f710318e6cb7ff5c2c1e088 (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
/**
 *  Copyright (c) 2011 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) - Bug 361794 - [Restructuring] New customization meta-model
 *      Gregoire Dupe (Mia-Software) - Bug 373078 - API Cleaning
 */
package org.eclipse.emf.facet.custom.core.exception;

/**
 * This exception is thrown when the computation of a customization property value failed.
 * @author Gregoire Dupe
 * @noinstantiate This class is not intended to be instantiated by clients.
 */
public final class CustomizationException extends Exception {

	private static final long serialVersionUID = -4070159863668577038L;

	public CustomizationException() {
		super();
	}

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

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

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

}

Back to the top