|
|||||||||||||||||||
| This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| FlockResourceException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 |
package net.sf.flock; |
|
| 2 |
|
|
| 3 |
import org.apache.commons.lang.exception.NestableException; |
|
| 4 |
|
|
| 5 |
/** |
|
| 6 |
* @version $Revision: 1.2 $ |
|
| 7 |
* @author $Author: phraktle $ |
|
| 8 |
*/ |
|
| 9 |
public class FlockResourceException extends NestableException {
|
|
| 10 |
|
|
| 11 | 0 |
public FlockResourceException() {
|
| 12 | 0 |
super(); |
| 13 |
} |
|
| 14 |
|
|
| 15 | 0 |
public FlockResourceException(String arg0) {
|
| 16 | 0 |
super(arg0); |
| 17 |
} |
|
| 18 | 0 |
public FlockResourceException(Throwable arg0) {
|
| 19 | 0 |
super(arg0); |
| 20 |
} |
|
| 21 |
|
|
| 22 | 0 |
public FlockResourceException(String arg0, Throwable arg1) {
|
| 23 | 0 |
super(arg0, arg1); |
| 24 |
} |
|
| 25 |
|
|
| 26 |
} |
|
| 27 |
|
|
||||||||||