1. Project Clover database Wed Jan 17 2024 23:40:18 CST
  2. Package org.europa.together.exceptions

File JsonProcessingException.java

 

Coverage histogram

../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
1
2
1
27
9
2
2
0.5
2
1

Classes

Class Line # Actions
JsonProcessingException 6 1 0% 2 0
1.0100%
 

Contributing tests

This file is covered by 6 tests. .

Source view

1    package org.europa.together.exceptions;
2   
3    /**
4    * Exception for JSON erros.
5    */
 
6    public class JsonProcessingException extends Exception {
7   
8    private static final long serialVersionUID = 1L;
9   
10    /**
11    * Creates a new instance of <code>JsonProcessingException</code> without
12    * detail message.
13    */
 
14  1 toggle public JsonProcessingException() {
15    /* NOT IN USE. */
16    }
17   
18    /**
19    * Constructs an instance of <code>JsonProcessingException</code> with the
20    * specified detail message.
21    *
22    * @param msg the detail message.
23    */
 
24  6 toggle public JsonProcessingException(final String msg) {
25  6 super(msg);
26    }
27    }