KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > io > CharConversionException


1 /*
2  * @(#)CharConversionException.java 1.15 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package java.io;
8
9 /**
10  * Base class for character conversion exceptions.
11  *
12  * @author Asmus Freytag
13  * @version 1.15, 12/19/03
14  * @since JDK1.1
15  */

16 public class CharConversionException
17     extends java.io.IOException JavaDoc
18 {
19     /**
20      * This provides no detailed message.
21      */

22     public CharConversionException() {
23     }
24     /**
25      * This provides a detailed message.
26      *
27      * @param s the detailed message associated with the exception.
28      */

29     public CharConversionException(String JavaDoc s) {
30         super(s);
31     }
32 }
33
Popular Tags