
org.csource.common.FastdfsException Maven / Gradle / Ivy
The newest version!
/*
* 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;
/**
* FastDfs Exception
*
* @author Happy Fish / YuQing
* @version Version 1.0
*/
public class FastdfsException extends Exception {
public FastdfsException() {
}
public FastdfsException(String message) {
super(message);
}
public FastdfsException(String message, Throwable cause) {
super(message, cause);
}
public FastdfsException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy