Clover coverage report - QedeqKernelSe Coverage Report
Coverage timestamp: Do Mai 10 2007 03:16:40 CEST
file stats: LOC: 37   Methods: 1
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
TooFewArgumentsException.java - 0% 0% 0%
coverage
 1    /* $Id: TooFewArgumentsException.java,v 1.3 2007/02/25 20:05:35 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.parser;
 19   
 20    /**
 21    * To few arguments. More arguments were expected.
 22    *
 23    * @version $Revision: 1.3 $
 24    * @author Michael Meyling
 25    */
 26    public class TooFewArgumentsException extends ParserException {
 27   
 28    /**
 29    * Constructor.
 30    *
 31    * @param position Error position.
 32    * @param expected Expected argument number.
 33    */
 34  0 public TooFewArgumentsException(final long position, final int expected) {
 35  0 super(position, "To few arguments. Expected: " + expected);
 36    }
 37    }