![JAR search and dependency download from the Maven repository](/logo.png)
com.github.thorbenkuck.netcom2.exceptions.SerializationFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NetCom2-Objects Show documentation
Show all versions of NetCom2-Objects Show documentation
The base communication required for NetCom2
The newest version!
package com.github.thorbenkuck.netcom2.exceptions;
/**
* This Exception will be thrown if Serialization fails.
*
* @version 1.0
* @see com.github.thorbenkuck.netcom2.network.shared.SerializationAdapter
* @since 1.0
*/
public class SerializationFailedException extends NetComException {
/**
* {@inheritDoc}
*/
public SerializationFailedException(final String message) {
super(message);
}
/**
* {@inheritDoc}
*/
public SerializationFailedException(final Throwable cause) {
super(cause);
}
/**
* {@inheritDoc}
*/
public SerializationFailedException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy