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

com.technophobia.substeps.model.exception.SubstepsException Maven / Gradle / Ivy

package com.technophobia.substeps.model.exception;

public class SubstepsException extends RuntimeException {

    private static final long serialVersionUID = 4647698987295633906L;

    public SubstepsException() {
        super();
    }

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

    public SubstepsException(final String message) {
        super(message);
    }

    public SubstepsException(final Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy