Files
redkale/com/wentch/redkale/convert/ConvertException.java
地平线 ac6a2e57c6
2015-09-22 17:34:27 +08:00

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);
}
}