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

org.yeauty.exception.DeploymentException Maven / Gradle / Ivy

There is a newer version: 0.12.0
Show newest version
package org.yeauty.exception;

public class DeploymentException extends Exception {

    private static final long serialVersionUID = 1L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy