Line | Hits | Source |
---|---|---|
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) { | |
24 | 24 | super(msg); |
25 | 24 | } |
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) { | |
34 | 20 | super(msg, cause); |
35 | 20 | } |
36 | } |
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |