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

com.sumologic.client.SumoException Maven / Gradle / Ivy

package com.sumologic.client;

/**
 * The base class for all sumo logic API exceptions.
 *
 * @author Sebastian Mies
 */
public class SumoException extends RuntimeException {

    /**
     * Delegation to Exception ({@see Exception})
     */
    public SumoException() {
        super();
    }

    /**
     * Delegation to Exception ({@see Exception})
     */
    public SumoException(String message) {
        super(message);
    }

    /**
     * Delegation to Exception ({@see Exception})
     */
    public SumoException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy