All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.smartbuf.exception.UnexpectedReadException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 0.1.4
Show newest version
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