EMMA Coverage Report (generated Fri Feb 14 08:28:31 UTC 2014)
[all classes][org.qedeq.kernel.se.common]

COVERAGE SUMMARY FOR SOURCE FILE [IllegalModuleDataException.java]

nameclass, %method, %block, %line, %
IllegalModuleDataException.java100% (1/1)100% (4/4)100% (28/28)100% (8/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class IllegalModuleDataException100% (1/1)100% (4/4)100% (28/28)100% (8/8)
IllegalModuleDataException (int, String, ModuleContext): void 100% (1/1)100% (6/6)100% (2/2)
IllegalModuleDataException (int, String, ModuleContext, Exception): void 100% (1/1)100% (7/7)100% (2/2)
IllegalModuleDataException (int, String, ModuleContext, ModuleContext): void 100% (1/1)100% (7/7)100% (2/2)
IllegalModuleDataException (int, String, ModuleContext, ModuleContext, Except... 100% (1/1)100% (8/8)100% (2/2)

1/* This file is part of the project "Hilbert II" - http://www.qedeq.org
2 *
3 * Copyright 2000-2014,  Michael Meyling <mime@qedeq.org>.
4 *
5 * "Hilbert II" is free software; you can redistribute
6 * it and/or modify it under the terms of the GNU General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15 
16package org.qedeq.kernel.se.common;
17 
18 
19/**
20 * Data validation error for a QEDEQ module. Occurs if a set or add method leads to wrong or
21 * inconsistent data.
22 *
23 * @author  Michael Meyling
24 */
25public class IllegalModuleDataException extends ModuleDataException {
26 
27    /**
28     * Constructor.
29     *
30     * @param   errorCode   Error code of this message.
31     * @param   message     Error message.
32     * @param   context     Error location.
33     * @param   referenceContext  Reference location.
34     * @param   cause       Detailed exception information.
35     */
36    public IllegalModuleDataException(final int errorCode, final String message,
37            final ModuleContext context, final ModuleContext referenceContext,
38            final Exception cause) {
39        super(errorCode, message, context, referenceContext, cause);
40    }
41 
42    /**
43     * Constructor.
44     *
45     * @param   errorCode   Error code of this message.
46     * @param   message     Error message.
47     * @param   context     Error location.
48     * @param   cause       Detailed exception information.
49     */
50    public IllegalModuleDataException(final int errorCode, final String message,
51            final ModuleContext context, final Exception cause) {
52        super(errorCode, message, context, cause);
53    }
54 
55    /**
56     * Constructor.
57     *
58     * @param   errorCode   Error code of this message.
59     * @param   message     Error message.
60     * @param   context     Error location.
61     */
62    public IllegalModuleDataException(final int errorCode, final String message,
63            final ModuleContext context) {
64        super(errorCode, message, context);
65    }
66 
67    /**
68     * Constructor.
69     *
70     * @param   errorCode   Error code of this message.
71     * @param   message     Error message.
72     * @param   context     Error location.
73     * @param   referenceContext  Reference location.
74     */
75    public IllegalModuleDataException(final int errorCode, final String message,
76            final ModuleContext context, final ModuleContext referenceContext) {
77        super(errorCode, message, context, referenceContext);
78    }
79 
80 
81 
82}

[all classes][org.qedeq.kernel.se.common]
EMMA 2.1.5320 (stable) (C) Vladimir Roubtsov