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

net.dubboclub.akka.remoting.exception.AkkaSystemException Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
package net.dubboclub.akka.remoting.exception;

/**
 * Created by bieber on 2015/7/8.
 */
public class AkkaSystemException extends RuntimeException {

    public AkkaSystemException() {
    }

    public AkkaSystemException(String message) {
        super(message);
    }

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

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

    public AkkaSystemException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy