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

File DAOException.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
DAOException 6 1 0% 2 0
1.0100%
 

Contributing tests

No tests hitting this source file were found.

Source view

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