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

com.github.ltsopensource.zookeeper.serializer.ZkMarshallingException Maven / Gradle / Ivy

package com.github.ltsopensource.zookeeper.serializer;

/**
 * @author Robert HG ([email protected]) on 5/17/15.
 */
public class ZkMarshallingException extends RuntimeException {

	private static final long serialVersionUID = 2489236644437409454L;

	public ZkMarshallingException() {
        super();
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy