Skip to content

Package: IllegalListTypeException

IllegalListTypeException

nameinstructionbranchcomplexitylinemethod
IllegalListTypeException(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.index;
15:
16: import org.eclipse.emfforms.spi.core.services.databinding.DatabindingFailedException;
17:
18: /**
19: * An {@link IllegalListTypeException} is thrown by an {@link IndexSegmentConverter} when the domain
20: * model feature of a {@link org.eclipse.emfforms.spi.view.indexsegment.model.VIndexDomainModelReferenceSegment
21: * VIndexDomainModelReferenceSegment} referencing a list is not of the type {@link org.eclipse.emf.ecore.EReference
22: * EReference}
23: * .
24: *
25: * @author Lucas Koehler
26: *
27: */
28: public class IllegalListTypeException extends DatabindingFailedException {
29:
30:         /**
31:          * Creates a new {@link IllegalListTypeException} with the given message.
32:          *
33:          * @param message The message text of the exception
34:          */
35:         public IllegalListTypeException(String message) {
36:                 super(message);
37:         }
38:
39:         private static final long serialVersionUID = -7882225641484854585L;
40:
41: }