This commit is contained in:
地平线
2015-09-19 16:17:07 +08:00
parent 9f438c9692
commit 3b8dc74504
17 changed files with 1064 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.wentch.redkale.net.icep;
/**
*
* @author zhangjx
*/
public class IcepException extends RuntimeException {
public IcepException() {
super();
}
public IcepException(String s) {
super(s);
}
public IcepException(String message, Throwable cause) {
super(message, cause);
}
public IcepException(Throwable cause) {
super(cause);
}
}