Skip to content

Package: IllegalMapTypeException

IllegalMapTypeException

nameinstructionbranchcomplexitylinemethod
IllegalMapTypeException(String)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2015 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Lucas Koehler - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emfforms.internal.core.services.segments.mapping;
15:
16: import org.eclipse.emfforms.spi.core.services.databinding.DatabindingFailedException;
17:
18: /**
19: * A checked {@link Exception} that is thrown during data binding when a mapping segment or mapping dmr do not use a
20: * proper map feature.
21: *
22: * @author Lucas Koehler
23: *
24: */
25: public class IllegalMapTypeException extends DatabindingFailedException {
26:
27:         private static final long serialVersionUID = 4729660645033802593L;
28:
29:         /**
30:          * Creates a new {@link IllegalMapTypeException}.
31:          *
32:          * @param message The message of the Exception
33:          */
34:         public IllegalMapTypeException(String message) {
35:                 super(message);
36:         }
37:
38: }