Searched refs:ioe (Results 1 - 25 of 395) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/TryWithResources/
H A DImplicitFinal.java15 } catch (IOException ioe) { // Not reachable
16 throw new AssertionError("Shouldn't reach here", ioe);
21 } catch (IOException ioe) { // Not reachable
22 throw new AssertionError("Shouldn't reach here", ioe);
27 } catch (IOException ioe) { // Not reachable
28 throw new AssertionError("Shouldn't reach here", ioe);
33 } catch (IOException ioe) { // Not reachable
34 throw new AssertionError("Shouldn't reach here", ioe);
H A DExplicitFinal.java37 } catch (IOException ioe) {
38 throw new AssertionError("Shouldn't reach here", ioe);
43 } catch (IOException ioe) {
44 throw new AssertionError("Shouldn't reach here", ioe);
49 } catch (IOException ioe) {
50 throw new AssertionError("Shouldn't reach here", ioe);
H A DTwrNullTests.java62 } catch(java.io.IOException ioe) {
63 Throwable[] suppressed = ioe.getSuppressed();
66 ioe);
H A DTwrFlow.java14 } catch (IOException ioe) { // Not reachable
15 throw new AssertionError("Shouldn't reach here", ioe);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DStackTraceTest.java49 } catch (IOException ioe) {
50 if (!(ioe instanceof ConnectException))
51 throw new RuntimeException("Expect ConnectException, got " + ioe);
52 if (ioe.getMessage() == null)
54 if (ioe.getCause() == null)
56 ioe);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSecrets.java51 } catch (IOException ioe) {
52 throw new AssertionError(ioe);
59 } catch (IOException ioe) {
60 throw new AssertionError(ioe);
/openjdk7/jdk/test/java/io/FileInputStream/
H A DFinalizeShdCallClose.java50 } catch (IOException ioe) {
51 ioe.printStackTrace();
58 } catch (IOException ioe) {
59 ioe.printStackTrace();
/openjdk7/jdk/test/java/io/FileOutputStream/
H A DFinalizeShdCallClose.java50 } catch (IOException ioe) {
51 ioe.printStackTrace();
58 } catch (IOException ioe) {
59 ioe.printStackTrace();
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DNullTest.java45 } catch (IOException ioe) {
46 throw new RuntimeException("Unexpected IOException: " + ioe);
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DBind.java98 catch (IOException ioe) { unexpected(ioe); }
107 } catch (IOException ioe) { unexpected(ioe); }
117 } catch (IOException ioe) { unexpected(ioe); }
127 } catch (IOException ioe) { unexpected(ioe); }
135 } catch (Exception ioe) {
136 unexpected(ioe);
[all...]
H A DShutdown.java75 } catch (IOException ioe) {
76 ioe.printStackTrace();
99 } catch (IOException ioe) {
100 unexpected(ioe);
139 } catch (IOException ioe) {
140 unexpected(ioe);
151 } catch (IOException ioe) {
152 unexpected(ioe);
161 } catch (IOException ioe) {
162 unexpected(ioe);
[all...]
H A DConnect.java95 } catch (IOException ioe) {
96 unexpected(ioe);
120 } catch (IOException ioe) {
121 unexpected(ioe);
130 } catch (IOException ioe) {
131 unexpected(ioe);
144 } catch (IOException ioe) {
145 unexpected(ioe);
155 } catch (IOException ioe) {
156 unexpected(ioe);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DWeakDataFile.java58 } catch(IOException ioe) {
59 throw new MIMEParsingException(ioe);
68 } catch(IOException ioe) {
69 throw new MIMEParsingException(ioe);
78 } catch(IOException ioe) {
79 throw new MIMEParsingException(ioe);
89 } catch(IOException ioe) {
90 throw new MIMEParsingException(ioe);
100 } catch(IOException ioe) {
101 throw new MIMEParsingException(ioe);
[all...]
/openjdk7/jdk/test/java/net/Socket/asyncClose/
H A DBrokenPipe.java63 } catch (IOException ioe) {
69 String text = ioe.getMessage();
71 throw ioe;
/openjdk7/jdk/test/sun/security/x509/X500Name/
H A DRDNwithMultipleAVAs.java41 } catch (IOException ioe) {
47 } catch (IOException ioe) {
/openjdk7/jdk/test/sun/net/www/protocol/file/
H A DNonUTF8EncodedChar.java46 } catch (IOException ioe) {
48 ioe.printStackTrace();
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DFileKey.java45 } catch (IOException ioe) {
46 throw new Error(ioe);
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DInsertRow.java73 } catch(IOException ioe) {
74 throw new RuntimeException(ioe);
172 } catch(IOException ioe) {
173 throw new RuntimeException(ioe);
/openjdk7/jdk/src/share/classes/com/sun/rowset/providers/
H A DRIOptimisticProvider.java129 } catch(IOException ioe) {
130 throw new RuntimeException(ioe);
255 } catch(IOException ioe) {
256 throw new RuntimeException(ioe);
/openjdk7/jdk/test/com/sun/security/auth/callback/TextCallbackHandler/
H A DNPE.java43 } catch (IOException ioe) {
/openjdk7/jdk/test/java/io/File/
H A DEmptyPath.java38 } catch (IOException ioe) {
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DTestInterfaces.java57 } catch (IOException ioe) {
59 + " " + ioe.getMessage());
82 } catch (IOException ioe) {
84 + " " + ioe.getMessage());
/openjdk7/jdk/test/java/net/Socket/
H A DInheritHandle.java74 } catch (IOException ioe) {
76 ioe.printStackTrace();
93 } catch (IOException ioe) {
94 throw new RuntimeException("Failed: " + ioe);
/openjdk7/jdk/test/java/nio/file/Files/
H A DNameLimits.java56 } catch (IOException ioe) {
58 name.toString().length(), name.toAbsolutePath().toString().length(), ioe);
69 } catch (IOException ioe) {
71 name.toString().length(), name.toAbsolutePath().toString().length(), ioe);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/
H A DLoopbackSSLSocket.java44 } catch (IOException ioe) {

Completed in 111 milliseconds

1234567891011>>