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

com.jn.agileway.codec.CodecException Maven / Gradle / Ivy

package com.jn.agileway.codec;

public class CodecException extends RuntimeException{
    public CodecException() {
        super();
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy