Clover icon

Coverage Report

  1. Project Clover database Thu Dec 4 2025 16:11:35 GMT
  2. Package jalview.ws2.actions

File ServiceInputInvalidException.java

 

Coverage histogram

../../../img/srcFileCovDistChart4.png
49% of files have more coverage

Code metrics

0
3
3
1
31
17
3
1
1
3
1

Classes

Class Line # Actions
ServiceInputInvalidException 10 3 3
0.3333333433.3%
 

Contributing tests

This file is covered by 7 tests. .

Source view

1    package jalview.ws2.actions;
2   
3    /**
4    * An exception thrown to indicate that the input is invalid and the service
5    * cannot be started.
6    *
7    * @author mmwarowny
8    *
9    */
 
10    public class ServiceInputInvalidException extends Exception
11    {
12    /**
13    *
14    */
15    private static final long serialVersionUID = 174066679057181584L;
16   
 
17  7 toggle public ServiceInputInvalidException(String message)
18    {
19  7 super(message);
20    }
21   
 
22  0 toggle public ServiceInputInvalidException(Throwable cause)
23    {
24  0 super(cause);
25    }
26   
 
27  0 toggle public ServiceInputInvalidException(String message, Throwable cause)
28    {
29  0 super(message, cause);
30    }
31    }