Clover coverage report - QedeqKernelSe Coverage Report
Coverage timestamp: Sa Jan 26 2008 14:11:34 CET
file stats: LOC: 57   Methods: 2
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IdentityOperatorAlreadyExistsException.java - 0% 0% 0%
coverage
 1    /* $Id: IdentityOperatorAlreadyExistsException.java,v 1.1 2008/01/26 12:39:09 m31 Exp $
 2    *
 3    * This file is part of the project "Hilbert II" - http://www.qedeq.org
 4    *
 5    * Copyright 2000-2007, 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.control;
 19   
 20    import org.qedeq.kernel.bo.module.ModuleContext;
 21    import org.qedeq.kernel.bo.module.ModuleDataException;
 22   
 23   
 24    /**
 25    * The identity operator was defined twice.
 26    *
 27    * @version $Revision: 1.1 $
 28    * @author Michael Meyling
 29    */
 30    public class IdentityOperatorAlreadyExistsException extends ModuleDataException {
 31   
 32    /**
 33    * Constructor.
 34    *
 35    * @param errorCode Error code of this message.
 36    * @param message Error message.
 37    * @param context Error location.
 38    */
 39  0 public IdentityOperatorAlreadyExistsException(final int errorCode, final String message,
 40    final ModuleContext context) {
 41  0 super(errorCode, message, context);
 42    }
 43   
 44    /**
 45    * Constructor.
 46    *
 47    * @param errorCode Error code of this message.
 48    * @param message Error message.
 49    * @param context Error location.
 50    * @param reference Reference location.
 51    */
 52  0 public IdentityOperatorAlreadyExistsException(final int errorCode, final String message,
 53    final ModuleContext context, final ModuleContext reference) {
 54  0 super(errorCode, message, context, reference);
 55    }
 56   
 57    }