Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
1   39   1   1
0   6   1   1
1     1  
1    
 
  ModuleFileNotFoundException       Line # 27 1 1 100% 1.0
 
  (1)
 
1    /* $Id: ModuleFileNotFoundException.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.service;
19   
20   
21    /**
22    * QEDEQ module file was not found in local file buffer.
23    *
24    * @version $Revision: 1.1 $
25    * @author Michael Meyling
26    */
 
27    public class ModuleFileNotFoundException extends Exception {
28   
29    /**
30    * Constructor.
31    *
32    * @param message Message.
33    */
 
34  1 toggle public ModuleFileNotFoundException(final String message) {
35  1 super(message);
36    }
37   
38    }
39