|
|||||||||||||||||||
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 | |||||||||||||||
ConversionException.java | - | 0% | 0% | 0% |
|
1 |
package com.thoughtworks.xstream.converters;
|
|
2 |
|
|
3 |
public class ConversionException extends RuntimeException { |
|
4 | 0 |
public ConversionException(String msg, Exception cause) {
|
5 | 0 |
super(msg, cause);
|
6 |
} |
|
7 |
|
|
8 | 0 |
public ConversionException(String msg) {
|
9 | 0 |
super(msg);
|
10 |
} |
|
11 |
} |
|
12 |
|
|