com.github.smartbuf.exception.UnexpectedReadException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartbuf Show documentation
Show all versions of smartbuf Show documentation
SmartBuf, is a cross-language serialization and deserialization framework, and it has
high performance and compression ratio like protobuf, high compatibility and scalability like json.
package com.github.smartbuf.exception;
import java.io.IOException;
/**
* UnexpectedReadException indicates Input run into some unexpected data.
*
* @author sulin
* @since 2019-10-22 17:10:07
*/
public class UnexpectedReadException extends IOException {
public UnexpectedReadException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy