com.github.slem1.await.ServiceUnavailableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of await-maven-plugin Show documentation
Show all versions of await-maven-plugin Show documentation
A plugin to pause maven build until some services become available.
package com.github.slem1.await;
/**
* Throw it if a service is unavailable.
*
* @author slemoine
*/
public class ServiceUnavailableException extends Exception {
/**
* creates new instance with {@code message}.
*
* @param message the exception message.
*/
public ServiceUnavailableException(String message) {
super(message);
}
/**
* create new instance {@code message} and the cause {@code cause}.
*
* @param message the exception message.
* @param cause the underlying cause.
*/
public ServiceUnavailableException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy