Skip to content

Package: IllegalListTypeException

IllegalListTypeException

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

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 - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emf.ecp.view.dynamictree.model.impl;
15:
16: import org.eclipse.emfforms.spi.core.services.databinding.DatabindingFailedException;
17:
18: /**
19: * This {@link IllegalListTypeException} is thrown by a {@link DynamicContainmentTreeDMRConverter} when the base
20: * feature of a {@link org.eclipse.emf.ecp.view.dynamictree.model.DynamicContainmentTreeDomainModelReference
21: * DynamicContainmentTreeDomainModelReference} is not a list or the list is not of the type
22: * {@link org.eclipse.emf.ecore.EReference EReference} .
23: *
24: * @author Lucas Koehler
25: *
26: */
27: public class IllegalListTypeException extends DatabindingFailedException {
28:
29:         private static final long serialVersionUID = 5721328492316894438L;
30:
31:         /**
32:          * Creates a new {@link IllegalListTypeException} with the given message.
33:          *
34:          * @param message The message text of the exception
35:          */
36:         public IllegalListTypeException(String message) {
37:                 super(message);
38:         }
39: }