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

io.spotnext.spring.web.exception.ServerStartupException Maven / Gradle / Ivy

There is a newer version: 1.0.21-BETA-20190513
Show newest version
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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy