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

org.intocps.maestro.plugin.ExpandException Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package org.intocps.maestro.plugin;

public class ExpandException extends Exception {
    public ExpandException() {
    }

    public ExpandException(String message) {
        super(message);
    }

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

    public ExpandException(Throwable cause) {
        super(cause);
    }

    public ExpandException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy