Skip to content

Package: EMFFormsConverterException

EMFFormsConverterException

nameinstructionbranchcomplexitylinemethod
EMFFormsConverterException(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%
EMFFormsConverterException(String, Throwable)
M: 0 C: 5
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
EMFFormsConverterException(Throwable)
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: * Johannes Faltermeier - initial API and implementation
13: * Eugen Neufeld - added constructor with Throwable, changed description
14: ******************************************************************************/
15: package org.eclipse.emfforms.spi.spreadsheet.core.converter;
16:
17: /**
18: * Exception thrown when the value conversion fails.
19: *
20: * @author Johannes Faltermeier
21: *
22: */
23: public class EMFFormsConverterException extends Exception {
24:
25:         private static final long serialVersionUID = 1L;
26:
27:         /**
28:          * Constructs a new {@link EMFFormsConverterException}.
29:          *
30:          * @param message The message of the exception
31:          */
32:         public EMFFormsConverterException(String message) {
33:                 super(message);
34:         }
35:
36:         /**
37:          * Constructs a new {@link EMFFormsConverterException}.
38:          *
39:          * @param throwable The Throwable that caused this exception
40:          */
41:         public EMFFormsConverterException(Throwable throwable) {
42:                 super(throwable);
43:         }
44:
45:         /**
46:          * Constructs a new {@link EMFFormsConverterException}.
47:          *
48:          * @param message The message of the exception
49:          * @param throwable The Throwable that caused this exception
50:          */
51:         public EMFFormsConverterException(String message, Throwable throwable) {
52:                 super(message, throwable);
53:         }
54: }