diff options
| author | Ronald Veldema <rveldema@cs.vu.nl> | 2002-03-11 15:46:36 +0000 |
|---|---|---|
| committer | Ronald Veldema <rveldema@cs.vu.nl> | 2002-03-11 15:46:36 +0000 |
| commit | eed4707c499f072d7e36d8499638b859a370fc57 (patch) | |
| tree | 02f838d922421e25f22b280a3dc415208cc910cb /java/nio/charset/CharacterCodingException.java | |
| parent | 0f5a2af52cbab9c19c69b9a7ab4ec3ba200758f3 (diff) | |
| download | classpath-eed4707c499f072d7e36d8499638b859a370fc57.tar.gz | |
java.nio implementation.
Not integrated into makefiles etc though
so nobody should notice its addition.
R.
Diffstat (limited to 'java/nio/charset/CharacterCodingException.java')
| -rw-r--r-- | java/nio/charset/CharacterCodingException.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/java/nio/charset/CharacterCodingException.java b/java/nio/charset/CharacterCodingException.java new file mode 100644 index 000000000..542b429b8 --- /dev/null +++ b/java/nio/charset/CharacterCodingException.java @@ -0,0 +1,15 @@ +package java.nio.charset; + +import java.io.*; + +class CharacterCodingException extends IOException +{ + CharacterCodingException() + { + } + + CharacterCodingException(String s) + { + super(s); + } +} |
