Coverage details for com.topcoder.document.index.persistence.impl.PersistenceConfigurationException

LineHitsSource
1 /*
2  * Copyright (C) 2006 TopCoder Inc., All Rights Reserved.
3  */
4 package com.topcoder.document.index.persistence.impl;
5  
6 import com.topcoder.document.index.persistence.IndexPersistenceException;
7  
8  
9 /**
10  * This is an exception that signals persistence configuration issues when instantiating or initializing persistence
11  * instances.
12  *
13  * @author AleaActaEst, TCSDEVELOPER
14  * @version 1.0
15  */
16 public class PersistenceConfigurationException extends IndexPersistenceException {
17  
18     /**
19      * Creates an exception instance initialized with the given exception message.
20      *
21      * @param msg the exception message to be used for the created instance
22      */
23     public PersistenceConfigurationException(final String msg) {
2424        super(msg);
2524    }
26  
27     /**
28      * Creates the exception instance initialized with the given exception message and the cause exception instance.
29      *
30      * @param msg the exception message to be used for the created instance
31      * @param cause the cause exception to be used for the created instance
32      */
33     public PersistenceConfigurationException(final String msg, final Throwable cause) {
3420        super(msg, cause);
3520    }
36 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.