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

COVERAGE SUMMARY FOR SOURCE FILE [TermCheckException.java]

nameclass, %method, %block, %line, %
TermCheckException.java100% (1/1)50%  (1/2)47%  (7/15)50%  (2/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TermCheckException100% (1/1)50%  (1/2)47%  (7/15)50%  (2/4)
TermCheckException (int, String, Element, ModuleContext, ModuleContext): void 0%   (0/1)0%   (0/8)0%   (0/2)
TermCheckException (int, String, Element, ModuleContext): void 100% (1/1)100% (7/7)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.bo.logic.wf;
17 
18import org.qedeq.kernel.bo.logic.common.LogicalCheckException;
19import org.qedeq.kernel.se.base.list.Element;
20import org.qedeq.kernel.se.common.ModuleContext;
21 
22/**
23 * This is an exception for logical errors within a QEDEQ module.
24 *
25 * This exception occurs if an element should be a term but is not.
26 *
27 * @author  Michael Meyling
28 */
29public class TermCheckException extends LogicalCheckException {
30 
31    /**
32     * Constructs an exception.
33     *
34     * @param   errorCode           ErrorCode of this message.
35     * @param   message             What is the problem.
36     * @param   element             Problematic element.
37     * @param   context             Error location. Not necessarily pointing to
38     *                                  <code>element</code>.
39     * @param   referenceContext    Reference location.
40     */
41    public TermCheckException(final int errorCode, final String message, final Element element,
42            final ModuleContext context, final ModuleContext referenceContext) {
43        super(errorCode, message, element, context, referenceContext);
44    }
45 
46    /**
47     * Constructs an exception.
48     *
49     * @param   errorCode           ErrorCode of this message.
50     * @param   message             What is the problem.
51     * @param   element             Problematic element.
52     * @param   context             Error location. Not necessarily pointing to
53     *                                  <code>element</code>.
54     */
55    public TermCheckException(final int errorCode, final String message,
56            final Element element, final ModuleContext context) {
57        super(errorCode, message, element, context);
58    }
59 
60}

[all classes][org.qedeq.kernel.bo.logic.wf]
EMMA 2.1.5320 (stable) (C) Vladimir Roubtsov