规范maven项目结构并升级版本号(1.27-SNAPSHOT)

This commit is contained in:
veryben
2017-05-18 20:42:57 +08:00
parent 51914bf1ac
commit 69417006f4
41 changed files with 681 additions and 699 deletions
@@ -0,0 +1,26 @@
/*
* Copyright (C) 2008 Happy Fish / YuQing
*
* FastDFS Java Client may be copied only under the terms of the GNU Lesser
* General Public License (LGPL).
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail.
*/
package org.csource.common;
/**
* My Exception
* @author Happy Fish / YuQing
* @version Version 1.0
*/
public class MyException extends Exception
{
public MyException()
{
}
public MyException(String message)
{
super(message);
}
}