com.github.thorbenkuck.netcom2.exceptions.StartFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NetCom2 Show documentation
Show all versions of NetCom2 Show documentation
NetCom2 is a lightweight, yet highly modular Client-Server-Communication-Framework, in the style of an
EventBus
The newest version!
package com.github.thorbenkuck.netcom2.exceptions;
/**
* This Exception will be thrown, if the Start of the {@link com.github.thorbenkuck.netcom2.network.server.ServerStart} or
* the {@link com.github.thorbenkuck.netcom2.network.client.ClientStart} fails.
*
* @version 1.0
* @see com.github.thorbenkuck.netcom2.network.client.ClientStart
* @see com.github.thorbenkuck.netcom2.network.server.ServerStart
* @since 1.0
*/
public class StartFailedException extends NetComException {
/**
* {@inheritDoc}
*/
public StartFailedException(final String s) {
super(s);
}
/**
* {@inheritDoc}
*/
public StartFailedException(final Throwable throwable) {
super(throwable);
}
/**
* {@inheritDoc}
*/
public StartFailedException(final String s, final Throwable throwable) {
super(s, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy