Clover icon

Coverage Report

  1. Project Clover database Thu Aug 13 2020 12:04:21 BST
  2. Package com.stevesoft.pat

File NotImplementedError.java

 

Coverage histogram

../../../img/srcFileCovDistChart0.png
56% of files have more coverage

Code metrics

0
1
1
1
16
9
1
1
1
1
1

Classes

Class Line # Actions
NotImplementedError 10 1 1
0.00%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package //
2    // This software is now distributed according to
3    // the Lesser Gnu Public License. Please see
4    // http://www.gnu.org/copyleft/lesser.txt for
5    // the details.
6    // -- Happy Computing!
7    //
8    com.stevesoft.pat;
9   
 
10    public class NotImplementedError extends Error
11    {
 
12  0 toggle public NotImplementedError(String s)
13    {
14  0 super(s);
15    }
16    }