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

dev.galasa.boot.LauncherException Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Licensed Materials - Property of IBM
 * 
 * (c) Copyright IBM Corp. 2019.
 */
package dev.galasa.boot;

/**
 * @see java.lang.Exception
 */
public class LauncherException extends Exception {

    private static final long serialVersionUID = 1L;

    /**
     * @see java.lang.Exception#Exception()
     */
    public LauncherException() {
        super();
    }

    /**
     * @see java.lang.Exception#Exception(String)
     */
    public LauncherException(String message) {
        super(message);
    }

    /**
     * @see java.lang.Exception#Exception(Throwable)
     */
    public LauncherException(Throwable cause) {
        super(cause);
    }

    /**
     * @see java.lang.Exception#Exception(String, Throwable)
     */
    public LauncherException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy