io.activej.serializer.CorruptedDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-serializer Show documentation
Show all versions of activej-serializer Show documentation
Extremely fast and space-efficient serializers. Implemented using bytecode engineering.
package io.activej.serializer;
public class CorruptedDataException extends RuntimeException {
public CorruptedDataException() {
}
public CorruptedDataException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy