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

io.socket.utf8.UTF8Exception Maven / Gradle / Ivy

There is a newer version: 1.1.28
Show newest version
package io.socket.utf8;

import java.io.IOException;

public class UTF8Exception extends IOException {

    public UTF8Exception() {
        super();
    }

    public UTF8Exception(String message) {
        super(message);
    }

    public UTF8Exception(String message, Throwable cause) {
        super(message, cause);
    }

    public UTF8Exception(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy