emul/mini/src/main/java/java/io/UnsupportedEncodingException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 23 Jan 2013 20:39:23 +0100
branchemul
changeset 554 05224402145d
parent 56 emul/src/main/java/java/io/UnsupportedEncodingException.java@d7a291b7808d
permissions -rw-r--r--
First attempt to separate 'mini' profile from the rest of JDK APIs
jaroslav@56
     1
/*
jaroslav@56
     2
 * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved.
jaroslav@56
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@56
     4
 *
jaroslav@56
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@56
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@56
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@56
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@56
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@56
    10
 *
jaroslav@56
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@56
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@56
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@56
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@56
    15
 * accompanied this code).
jaroslav@56
    16
 *
jaroslav@56
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@56
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@56
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@56
    20
 *
jaroslav@56
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@56
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@56
    23
 * questions.
jaroslav@56
    24
 */
jaroslav@56
    25
package java.io;
jaroslav@56
    26
jaroslav@56
    27
/**
jaroslav@56
    28
 * The Character Encoding is not supported.
jaroslav@56
    29
 *
jaroslav@56
    30
 * @author  Asmus Freytag
jaroslav@56
    31
 * @since   JDK1.1
jaroslav@56
    32
 */
jaroslav@56
    33
public class UnsupportedEncodingException
jaroslav@56
    34
    extends IOException
jaroslav@56
    35
{
jaroslav@56
    36
    private static final long serialVersionUID = -4274276298326136670L;
jaroslav@56
    37
jaroslav@56
    38
    /**
jaroslav@56
    39
     * Constructs an UnsupportedEncodingException without a detail message.
jaroslav@56
    40
     */
jaroslav@56
    41
    public UnsupportedEncodingException() {
jaroslav@56
    42
        super();
jaroslav@56
    43
    }
jaroslav@56
    44
jaroslav@56
    45
    /**
jaroslav@56
    46
     * Constructs an UnsupportedEncodingException with a detail message.
jaroslav@56
    47
     * @param s Describes the reason for the exception.
jaroslav@56
    48
     */
jaroslav@56
    49
    public UnsupportedEncodingException(String s) {
jaroslav@56
    50
        super(s);
jaroslav@56
    51
    }
jaroslav@56
    52
}