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

org.eu.vooo.commons.net.exception.NetException Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package org.eu.vooo.commons.net.exception;

/**
 * @author [email protected]
 */
public class NetException extends RuntimeException {

    public NetException() {
    }

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy