This commit is contained in:
RedKale
2016-02-24 13:07:04 +08:00
parent 075f508903
commit c0e7a29614
242 changed files with 0 additions and 0 deletions

View File

@@ -1,29 +0,0 @@
/*
* 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);
}
}