jaroslav@56: /* jaroslav@56: * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved. jaroslav@56: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jaroslav@56: * jaroslav@56: * This code is free software; you can redistribute it and/or modify it jaroslav@56: * under the terms of the GNU General Public License version 2 only, as jaroslav@56: * published by the Free Software Foundation. Oracle designates this jaroslav@56: * particular file as subject to the "Classpath" exception as provided jaroslav@56: * by Oracle in the LICENSE file that accompanied this code. jaroslav@56: * jaroslav@56: * This code is distributed in the hope that it will be useful, but WITHOUT jaroslav@56: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jaroslav@56: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jaroslav@56: * version 2 for more details (a copy is included in the LICENSE file that jaroslav@56: * accompanied this code). jaroslav@56: * jaroslav@56: * You should have received a copy of the GNU General Public License version jaroslav@56: * 2 along with this work; if not, write to the Free Software Foundation, jaroslav@56: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jaroslav@56: * jaroslav@56: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jaroslav@56: * or visit www.oracle.com if you need additional information or have any jaroslav@56: * questions. jaroslav@56: */ jaroslav@56: package java.io; jaroslav@56: jaroslav@56: /** jaroslav@56: * The Character Encoding is not supported. jaroslav@56: * jaroslav@56: * @author Asmus Freytag jaroslav@56: * @since JDK1.1 jaroslav@56: */ jaroslav@56: public class UnsupportedEncodingException jaroslav@56: extends IOException jaroslav@56: { jaroslav@56: private static final long serialVersionUID = -4274276298326136670L; jaroslav@56: jaroslav@56: /** jaroslav@56: * Constructs an UnsupportedEncodingException without a detail message. jaroslav@56: */ jaroslav@56: public UnsupportedEncodingException() { jaroslav@56: super(); jaroslav@56: } jaroslav@56: jaroslav@56: /** jaroslav@56: * Constructs an UnsupportedEncodingException with a detail message. jaroslav@56: * @param s Describes the reason for the exception. jaroslav@56: */ jaroslav@56: public UnsupportedEncodingException(String s) { jaroslav@56: super(s); jaroslav@56: } jaroslav@56: }