25 lines
524 B
Java
Raw Normal View History

2014-12-07 11:24:05 +08:00
/*
* Copyright (C) 2008 Happy Fish / YuQing
*
* FastDFS Java Client may be copied only under the terms of the GNU Lesser
* General Public License (LGPL).
2019-10-29 09:27:00 +08:00
* Please visit the FastDFS Home Page https://github.com/happyfish100/fastdfs for more detail.
2014-12-07 11:24:05 +08:00
*/
package org.csource.common;
/**
2017-05-19 09:56:24 +08:00
* My Exception
*
* @author Happy Fish / YuQing
* @version Version 1.0
*/
public class MyException extends Exception {
2019-12-27 21:41:10 +08:00
public MyException(String s, Exception e) {
2017-05-19 09:56:24 +08:00
}
public MyException(String message) {
super(message);
}
2014-12-07 11:24:05 +08:00
}