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

com.danielflower.apprunner.router.problems.AppRunnerException Maven / Gradle / Ivy

There is a newer version: 1.11.6
Show newest version
package com.danielflower.apprunner.router.problems;

public class AppRunnerException extends RuntimeException {
    public AppRunnerException(String message) {
        super(message);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy