aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io/CharConversionException.java
diff options
context:
space:
mode:
author(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-19 04:43:18 +0000
committer(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-19 04:43:18 +0000
commita128261d129ed48a61041389bbe6b6b034faf85c (patch)
tree9ff4ec8c2f62b66491ccf53b8ae2346a32461282 /libjava/java/io/CharConversionException.java
parent2e1e56000d8528b1ca6423a687084ffc14221ee3 (diff)
This commit was manufactured by cvs2svn to create tagbounded-pointers-merge-20000519
'bounded-pointers-merge-20000519'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/tags/bounded-pointers-merge-20000519@34013 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/io/CharConversionException.java')
-rw-r--r--libjava/java/io/CharConversionException.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/libjava/java/io/CharConversionException.java b/libjava/java/io/CharConversionException.java
deleted file mode 100644
index 938d605d0f9..00000000000
--- a/libjava/java/io/CharConversionException.java
+++ /dev/null
@@ -1,34 +0,0 @@
-// CharConversionException.java - Problem converting char to byte encoding.
-
-/* Copyright (C) 1998, 1999 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-package java.io;
-
-/**
- * @author Tom Tromey <tromey@cygnus.com>
- * @date September 25, 1998
- */
-
-/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
- * "The Java Language Specification", ISBN 0-201-63451-1
- * Status: Complete to 1.1.
- */
-
-public class CharConversionException extends IOException
-{
- public CharConversionException ()
- {
- super ();
- }
-
- public CharConversionException (String s)
- {
- super (s);
- }
-}