This commit is contained in:
wentch
2015-12-16 17:30:36 +08:00
parent fe054abdfe
commit 9c00365ec2
175 changed files with 26124 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkale.convert;
/**
*
* @see http://www.redkale.org
* @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);
}
}