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

org.mydotey.codec.CodecException Maven / Gradle / Ivy

The newest version!
package org.mydotey.codec;

/**
 * Created by Qiang Zhao on 10/05/2016.
 */
public class CodecException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public CodecException(Exception ex) {
        super(ex);
    }

    public CodecException(String message, Exception ex) {
        super(message, ex);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy