com.github.thorbenkuck.netcom2.exceptions.DeSerializationFailedException 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 shows that the deserialization of some Object failed.
*
* @version 1.0
* @see com.github.thorbenkuck.netcom2.network.shared.DeSerializationAdapter
* @since 1.0
*/
public class DeSerializationFailedException extends NetComException {
/**
* {@inheritDoc}
*/
public DeSerializationFailedException(final String message) {
super(message);
}
/**
* {@inheritDoc}
*/
public DeSerializationFailedException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* {@inheritDoc}
*/
public DeSerializationFailedException(final Throwable cause) {
super(cause);
}
}