com.github.thorbenkuck.netcom2.exceptions.ClientCreationFailedException 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 is thrown, if the {@link com.github.thorbenkuck.netcom2.network.server.ClientFactory#produce() }
* method encounters an Exception
*
* TODO
*
* @version 1.0
* @see com.github.thorbenkuck.netcom2.network.server.ClientFactory#produce()
* @since 1.0
*/
public class ClientCreationFailedException extends NetComRuntimeException {
/**
* {@inheritDoc}
*/
public ClientCreationFailedException(final String message) {
super(message);
}
/**
* {@inheritDoc}
*/
public ClientCreationFailedException(final Throwable throwable) {
super(throwable);
}
/**
* {@inheritDoc}
*/
public ClientCreationFailedException(final String message, final Throwable throwable) {
super(message, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy