All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.qinsoft.qmemache.QMemcacheException Maven / Gradle / Ivy

There is a newer version: 1.0.1-beta1
Show newest version
package com.qinsoft.qmemache;

/**
 * QMemcache异常
 */
public class QMemcacheException extends RuntimeException{
    public QMemcacheException(String message) {
        super(message);
    }

    public QMemcacheException(String message, Throwable cause) {
        super(message, cause);
    }

    public QMemcacheException(Throwable cause) {
        super(cause);
    }

    protected QMemcacheException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy