![JAR search and dependency download from the Maven repository](/logo.png)
org.drombler.acp.startup.main.ServiceLoaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of drombler-acp-startup-main Show documentation
Show all versions of drombler-acp-startup-main Show documentation
The main classes to startup a Drombler ACP based application.
/*
* COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Notice
*
* The contents of this file are subject to the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.opensource.org/licenses/cddl1.txt
*
* The Original Code is Drombler.org. The Initial Developer of the
* Original Code is Florian Brunner (GitHub user: puce77).
* Copyright 2015 Drombler.org. All Rights Reserved.
*
* Contributor(s): .
*/
package org.drombler.acp.startup.main;
/**
*
* @author puce
*/
// TODO: move to SoftSmithy
public class ServiceLoaderException extends RuntimeException {
private static final long serialVersionUID = -326132137354684616L;
public ServiceLoaderException() {
}
public ServiceLoaderException(String message) {
super(message);
}
public ServiceLoaderException(String message, Throwable cause) {
super(message, cause);
}
public ServiceLoaderException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy