You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
801 B
52 lines
801 B
/*
|
|
* Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package java.io;
|
|
|
|
/**
|
|
* Base class for character conversion exceptions.
|
|
*
|
|
* @author Asmus Freytag
|
|
* @since JDK1.1
|
|
*/
|
|
public class CharConversionException
|
|
extends java.io.IOException
|
|
{
|
|
private static final long serialVersionUID = -8680016352018427031L;
|
|
|
|
/**
|
|
* This provides no detailed message.
|
|
*/
|
|
public CharConversionException() {
|
|
}
|
|
/**
|
|
* This provides a detailed message.
|
|
*
|
|
* @param s the detailed message associated with the exception.
|
|
*/
|
|
public CharConversionException(String s) {
|
|
super(s);
|
|
}
|
|
}
|