Home | History | Annotate | Download | only in util

Lines Matching defs:ioException

25 import java.io.IOException;
65 public Appendable append(CharSequence arg0) throws IOException {
69 public Appendable append(char arg0) throws IOException {
74 throws IOException {
106 public Appendable append(char c) throws IOException {
111 throw new IOException();
116 public Appendable append(CharSequence csq) throws IOException {
121 throw new IOException();
127 throws IOException {
132 throw new IOException();
137 public void flush() throws IOException {
138 throw new IOException("Always throw IOException");
227 public void test_ConstructorLjava_lang_String() throws IOException {
258 throws IOException {
303 throws IOException {
356 public void test_ConstructorLjava_io_File() throws IOException {
387 throws IOException {
444 throws IOException {
495 public void test_ConstructorLjava_io_PrintStream() throws IOException {
513 public void test_ConstructorLjava_io_OutputStream() throws IOException {
532 throws IOException {
574 throws IOException {
651 public void test_flush() throws IOException {
672 public void test_close() throws IOException {
678 assertNull(f.ioException());
698 * java.util.Formatter#ioException()
700 public void test_ioException() throws IOException {
703 assertNull(f.ioException());
705 assertNotNull(f.ioException());
711 // format stop working after IOException
712 assertNotNull(f.ioException());
4215 protected void setUp() throws IOException {