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

org.technologybrewery.habushu.HabushuException Maven / Gradle / Ivy

Go to download

Leverages Poetry and Pyenv to provide an automated, predictable order of execution of build commands that apply DevOps and configuration management best practices

The newest version!
package org.technologybrewery.habushu;

/**
 * Habushu-specific exception.
 */
public class HabushuException extends RuntimeException {

    private static final long serialVersionUID = 3791347545296314733L;

    /**
     * {@inheritDoc}
     */
    public HabushuException() {
        super();
    }

    /**
     * {@inheritDoc}
     */
    public HabushuException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * {@inheritDoc}
     */
    public HabushuException(String message) {
        super(message);
    }

    /**
     * {@inheritDoc}
     */
    public HabushuException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy