This commit is contained in:
RedKale
2016-03-31 18:40:13 +08:00
parent 06f182b170
commit e050c7438d
194 changed files with 31002 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;
/**
*
* <p> 详情见: 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);
}
}