29 lines
552 B
Java
29 lines
552 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.wentch.redkale.convert;
|
|
|
|
/**
|
|
*
|
|
* @author zhangjx
|
|
*/
|
|
public class ConvertException extends RuntimeException {
|
|
|
|
public ConvertException() {
|
|
super();
|
|
}
|
|
|
|
public ConvertException(String s) {
|
|
super(s);
|
|
}
|
|
|
|
public ConvertException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public ConvertException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|