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

org.java_websocket.exceptions.InvalidEncodingException Maven / Gradle / Ivy

There is a newer version: 1.5.7
Show newest version
package org.java_websocket.exceptions;

import java.io.UnsupportedEncodingException;

/**
 * The Character Encoding is not supported.
 *
 * @since 1.4.0
 */
public class InvalidEncodingException extends RuntimeException {

    /**
     * attribute for the encoding exception
     */
    private final UnsupportedEncodingException encodingException;

    /**
     * constructor for InvalidEncodingException
     *
     * @param encodingException the cause for this exception
     */
    public InvalidEncodingException(UnsupportedEncodingException encodingException) {
        if (encodingException == null)
            throw new IllegalArgumentException();
        this.encodingException = encodingException;
    }

    /**
     * Get the exception which includes more information on the unsupported encoding
     * @return an UnsupportedEncodingException
     */
    public UnsupportedEncodingException getEncodingException() {
        return encodingException;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy