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

com.zoomlion.cloud.common.codec.CodecException Maven / Gradle / Ivy

The newest version!
package com.zoomlion.cloud.common.codec;

public class CodecException  extends RuntimeException {
	  /**
	 * 
	 */
	private static final long serialVersionUID = -7217854967045913498L;

	/**
     * Creates a new CodecException.
     */
    public CodecException() {
        super();
    }

    /**
     * Creates a new CodecException.
     *
     * @param message the reason for the exception.
     */
    public CodecException(String message) {
        super(message);
    }

    /**
     * Creates a new CodecException.
     *
     * @param cause the underlying cause of the exception.
     */
    public CodecException(Throwable cause) {
        super(cause);
    }

    /**
     * Creates a new CodecException.
     *
     * @param message the reason for the exception.
     * @param cause   the underlying cause of the exception.
     */
    public CodecException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy