package java.io;

/**
 * The Character Encoding is not supported.
 */
public class UnsupportedEncodingException extends IOException {

    /**
     * Constructs an UnsupportedEncodingException without a detail message.
     */
    public UnsupportedEncodingException() {
        throw new RuntimeException();
    }

    /**
     * Constructs an UnsupportedEncodingException with a detail message.
     *
     * @param s
     *        Describes the reason for the exception.
     */
    public UnsupportedEncodingException(String s) {
        throw new RuntimeException();
    }
}
