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

com.cybermkd.client.exception.ClientException Maven / Gradle / Ivy

There is a newer version: 1.0.1.3
Show newest version
package com.cybermkd.client.exception;

/**
 * ClientException
 */
public class ClientException extends RuntimeException {

    /**
     * Constructor.
     */
    public ClientException() {
    }

    /**
     * Constructor.
     *
     * @param message Exception message.
     */
    public ClientException(String message) {
        super(message);
    }

    /**
     * Constructor.
     *
     * @param cause An exception.
     */
    public ClientException(Throwable cause) {
        super(cause);
    }

    /**
     * Constructor.
     *
     * @param message Exception message.
     * @param cause   An exception.
     */
    public ClientException(String message, Throwable cause) {
        super(message, cause);
    }

}














© 2015 - 2024 Weber Informatics LLC | Privacy Policy