Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 33c4381eacd112b6c0823273325a03ec92965e48 (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
42
43
/**
 * 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 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * 	Emmanuelle Rouillé (Mia-Software) - Bug 352618 - To be able to use non derived facet structural features and save them values.
 */
package org.eclipse.papyrus.emf.facet.efacet.core.internal.exception;

import org.eclipse.papyrus.emf.facet.efacet.core.exception.FacetManagerException;

/**
 * This exception is raised when an IOException is caught when trying to save a structural feature instance model
 *
 * @since 0.2
 */
public class SaveStructuralFeatureInstanceModelException extends
		FacetManagerException {

	private static final long serialVersionUID = 7024009106572531846L;

	/**
	 * Creates a new instance of UnmatchingExpectedTypeException
	 * with {@link Throwable} the exception at the origin of this exception
	 */
	public SaveStructuralFeatureInstanceModelException(final Throwable cause) {
		super(cause);
	}

	/**
	 * Creates a new instance of UnmatchingExpectedTypeException
	 * with {@link Throwable} the exception at the origin of this exception
	 */
	public SaveStructuralFeatureInstanceModelException(final String message) {
		super(message);
	}
}

Back to the top