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

io.keen.client.java.exceptions.ServerException Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package io.keen.client.java.exceptions;

/**
 * ServerException
 *
 * @author Kevin Litwack ([email protected])
 * @since 2.0.0
 */
public class ServerException extends KeenException {
    private static final long serialVersionUID = 3913819084183357142L;

    public ServerException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy