Clover coverage report - QedeqKernelSe Coverage Report
Coverage timestamp: Do Jan 11 2007 09:03:50 CET
file stats: LOC: 38   Methods: 1
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
TooMuchArgumentsException.java - 0% 0% 0%
coverage
 1    /* $Id: TooMuchArgumentsException.java,v 1.2 2006/10/20 20:23:05 m31 Exp $
 2    *
 3    * This file is part of the project "Hilbert II" - http://www.qedeq.org
 4    *
 5    * Copyright 2000-2006, 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.parser;
 19   
 20   
 21    /**
 22    * There are too much arguments. A less number was expected.
 23    *
 24    * @version $Revision: 1.2 $
 25    * @author Michael Meyling
 26    */
 27    public class TooMuchArgumentsException extends ParserException {
 28   
 29    /**
 30    * Constructor.
 31    *
 32    * @param position Error position.
 33    * @param expected Expected number of arguments.
 34    */
 35  0 public TooMuchArgumentsException(final long position, final int expected) {
 36  0 super(position, "To much arguments. Maximum: " + expected);
 37    }
 38    }