Clover Coverage Report - ARESTC 0.1.7-SNAPSHOT
Coverage timestamp: Fri Aug 27 2010 19:12:04 CEST
../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
1   42   1   1
0   7   1   1
1     1  
1    
 
  CommandException       Line # 27 1 0% 1 0 100% 1.0
 
  (1)
 
1    /*
2    *
3    * (C)opyright 2010, Nikolaos Georgosopoulos
4    *
5    * This file is part of ARESTC.
6   
7    ARESTC is free software: you can redistribute it and/or modify
8    it under the terms of the Lesser General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11   
12    ARESTC 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    You should have received a copy of the Lesser General Public License
18    along with ARESTC. If not, see <http://www.gnu.org/licenses/>.
19   
20    */
21    package net.sf.arestc.core;
22   
23    // TODO: Auto-generated Javadoc
24    /**
25    * The Class CommandException.
26    */
 
27    public class CommandException extends Exception {
28   
29    /** The Constant serialVersionUID. */
30    private static final long serialVersionUID = 8538127250408892181L;
31   
32    /**
33    * Instantiates a new command exception.
34    *
35    * @param message the message
36    * @param cause the cause
37    */
 
38  1 toggle public CommandException(final String message, final Throwable cause) {
39  1 super(message, cause);
40    }
41   
42    }