|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IbatisConfigurationException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 |
/**
|
|
| 2 |
* JFoxSOAF, Service-Oriented Application Framework
|
|
| 3 |
*
|
|
| 4 |
* Copyright (C) www.huihoo.org
|
|
| 5 |
*
|
|
| 6 |
* Distributable under GNU LGPL license
|
|
| 7 |
*
|
|
| 8 |
* For more information, please visit: http://www.huihoo.org/jfox/jfoxsoaf
|
|
| 9 |
*/
|
|
| 10 |
|
|
| 11 |
package org.huihoo.jfox.soaf.exception;
|
|
| 12 |
|
|
| 13 |
/**
|
|
| 14 |
* Represents exceptions raised when initialize Ibatis Dao configration.
|
|
| 15 |
*
|
|
| 16 |
* @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
|
|
| 17 |
* @version $Revision: 1.1 $ $Date: 2004/10/25 15:14:30 $
|
|
| 18 |
* @version Revision: 1.0
|
|
| 19 |
*/
|
|
| 20 |
|
|
| 21 |
public class IbatisConfigurationException extends NestedRuntimeException { |
|
| 22 |
|
|
| 23 |
/**
|
|
| 24 |
* Construct a new exception with no cause and no detail message. Note
|
|
| 25 |
* modern JVMs may still track the exception that caused this one.
|
|
| 26 |
*/
|
|
| 27 | 0 |
public IbatisConfigurationException() {
|
| 28 |
} |
|
| 29 |
|
|
| 30 |
/**
|
|
| 31 |
* Construct a new exception with no cause and the specified detail message.
|
|
| 32 |
* Note modern JVMs may still track the exception that caused this one.
|
|
| 33 |
*
|
|
| 34 |
* @param message
|
|
| 35 |
* the message detailing the exception.
|
|
| 36 |
*/
|
|
| 37 | 0 |
public IbatisConfigurationException(final String message) {
|
| 38 | 0 |
super(message);
|
| 39 |
|
|
| 40 |
} |
|
| 41 |
|
|
| 42 |
/**
|
|
| 43 |
* Construct a new exception with the specified cause and no detail message.
|
|
| 44 |
*
|
|
| 45 |
* @param cause
|
|
| 46 |
* the exception that caused this one.
|
|
| 47 |
*/
|
|
| 48 | 0 |
public IbatisConfigurationException(final String message,
|
| 49 |
final Throwable cause) {
|
|
| 50 | 0 |
super(message, cause);
|
| 51 |
} |
|
| 52 |
|
|
| 53 |
/**
|
|
| 54 |
* Construct a new exception with the specified cause and no detail message.
|
|
| 55 |
*
|
|
| 56 |
* @param cause
|
|
| 57 |
* the exception that caused this one.
|
|
| 58 |
*/
|
|
| 59 | 0 |
public IbatisConfigurationException(final Throwable cause) {
|
| 60 | 0 |
super(cause);
|
| 61 |
} |
|
| 62 |
} |
|
||||||||||