![JAR search and dependency download from the Maven repository](/logo.png)
org.resthub.web.exception.SerializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resthub-web-common Show documentation
Show all versions of resthub-web-common Show documentation
Common classes for both client and server RESThub modules
package org.resthub.web.exception;
@SuppressWarnings("serial")
public class SerializationException extends RuntimeException {
public SerializationException() {
super();
}
public SerializationException(final String message, final Throwable cause) {
super(message, cause);
}
public SerializationException(final String message) {
super(message);
}
public SerializationException(final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy