Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
../../../../../../img/srcFileCovDistChart5.png 74% of files have more coverage
2   65   2   1
0   13   1   2
2     1  
1    
 
  ElementCheckException       Line # 34 2 2 50% 0.5
 
No Tests
 
1    /* $Id: ElementCheckException.java,v 1.1 2008/07/26 07:58:29 m31 Exp $
2    *
3    * This file is part of the project "Hilbert II" - http://www.qedeq.org
4    *
5    * Copyright 2000-2008, Michael Meyling <mime@qedeq.org>.
6    *
7    * "Hilbert II" is free software; you can redistribute
8    * it and/or modify it under the terms of the GNU General Public
9    * License as published by the Free Software Foundation; either
10    * version 2 of the License, or (at your option) any later version.
11    *
12    * This program is distributed in the hope that it will be useful,
13    * but WITHOUT ANY WARRANTY; without even the implied warranty of
14    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15    * GNU General Public License for more details.
16    */
17   
18    package org.qedeq.kernel.bo.logic.wf;
19   
20    import org.qedeq.kernel.base.list.Element;
21    import org.qedeq.kernel.common.ModuleContext;
22   
23    /**
24    * This is an exception for logical errors within a QEDEQ module.
25    * This exception is reserved for basic violation of the logical language.
26    * For example:
27    * An element is not an atom but should be one, an atom has <code>null</code>
28    * content or an element list was expected but is not there, an element list
29    * has an <code>null</code> operator or an <code>null</code> entry.
30    *
31    * @version $Revision: 1.1 $
32    * @author Michael Meyling
33    */
 
34    public class ElementCheckException extends LogicalCheckException {
35   
36    /**
37    * Constructs an exception.
38    *
39    * @param errorCode ErrorCode of this message.
40    * @param message What is the problem.
41    * @param element Problematic formula.
42    * @param context Error location. Not necessarily pointing to
43    * <code>element</code>.
44    * @param referenceContext Reference location.
45    */
 
46  0 toggle public ElementCheckException(final int errorCode, final String message, final Element element,
47    final ModuleContext context, final ModuleContext referenceContext) {
48  0 super(errorCode, message, element, context, referenceContext);
49    }
50   
51    /**
52    * Constructs an exception.
53    *
54    * @param errorCode ErrorCode of this message.
55    * @param message What is the problem.
56    * @param element Problematic formula.
57    * @param context Error location. Not necessarily pointing to
58    * <code>element</code>.
59    */
 
60  27 toggle public ElementCheckException(final int errorCode, final String message,
61    final Element element, final ModuleContext context) {
62  27 super(errorCode, message, element, context);
63    }
64   
65    }