io.spotnext.spring.web.exception.ServerStartupException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spot-spring-web-support Show documentation
Show all versions of spot-spring-web-support Show documentation
The spOt microservice framework.
package io.spotnext.spring.web.exception;
/**
* ServerStartupException class.
*
* @author mojo2012
* @version 1.0
* @since 1.0
*/
public class ServerStartupException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Constructor for ServerStartupException.
*
* @param message a {@link java.lang.String} object.
*/
public ServerStartupException(String message) {
super(message);
}
/**
* Constructor for ServerStartupException.
*
* @param message a {@link java.lang.String} object.
* @param rootCause a {@link java.lang.Throwable} object.
*/
public ServerStartupException(String message, Throwable rootCause) {
super(message, rootCause);
}
}