Clover coverage report - QedeqKernelSe Coverage Report
Coverage timestamp: Do Mai 10 2007 03:16:40 CEST
file stats: LOC: 40   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
LocationFoundException.java - 100% 100% 100%
coverage
 1    /* $Id: LocationFoundException.java,v 1.2 2007/04/12 23:50:10 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.xml.mapper;
 19   
 20    import org.qedeq.kernel.bo.module.ModuleContext;
 21    import org.qedeq.kernel.bo.module.ModuleDataException;
 22   
 23    /**
 24    * Thrown if the location was found.
 25    *
 26    * @version $Revision: 1.2 $
 27    * @author Michael Meyling
 28    */
 29    public class LocationFoundException extends ModuleDataException {
 30   
 31    /**
 32    * Constructs an exception.
 33    *
 34    * @param context Error location.
 35    */
 36  28955 public LocationFoundException(final ModuleContext context) {
 37  28955 super(50000, "location found", context);
 38    }
 39   
 40    }