Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1e3ede63a5ef2345eb788f2103d1aae8ed711fef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*******************************************************************************
 * 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:
 *    Nicolas Bros (Mia-Software) - Bug 361612 - New core for new version of the Facet metamodel
 *******************************************************************************/
package org.eclipse.papyrus.emf.facet.efacet.core.internal.exception;

/**
 * This exception is raised when an object cannot be extended by a facet because the class of the object does not correspond
 * to the extended metaclass of the facet.
 * @since 0.2
 */
public class NonApplicableFacetException extends Exception {

	private static final long serialVersionUID = 2984069177830836577L;
}

Back to the top