Searched refs:detail (Results 1 – 6 of 6) sorted by relevance
/libcore/luni/src/main/java/java/io/ |
D | WriteAbortedException.java | 38 public Exception detail; field in WriteAbortedException 52 detail = rootCause; in WriteAbortedException() 66 if (detail != null) { in getMessage() 67 msg = msg + "; " + detail.toString(); in getMessage() 79 return detail; in getCause()
|
/libcore/xml/src/main/java/org/xmlpull/v1/ |
D | XmlPullParserException.java | 12 protected Throwable detail; field in XmlPullParserException 45 this.detail = chain; in XmlPullParserException() 48 public Throwable getDetail() { return detail; } in getDetail() 65 if (detail == null) { in printStackTrace() 70 detail.printStackTrace(); in printStackTrace()
|
/libcore/luni/src/main/java/java/net/ |
D | HttpRetryException.java | 42 public HttpRetryException(String detail, int code) { in HttpRetryException() argument 43 super(detail); in HttpRetryException() 59 public HttpRetryException(String detail, int code, String location) { in HttpRetryException() argument 60 super(detail); in HttpRetryException()
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
D | OldCharset_AbstractTest.java | 213 String detail = String.format( in assertEqualCBs() local 217 fail(msg + ": " + detail); in assertEqualCBs() 234 String detail = String.format("Mismatch at index %d: %d instead of expected %d.\n", in assertEqualChars() local 236 fail(detail); in assertEqualChars() 253 String detail = String.format( in assertEqualBytes() local 257 fail(msg + ": " + detail); in assertEqualBytes()
|
/libcore/luni/src/main/java/libcore/io/ |
D | IoBridge.java | 176 String detail = "failed to connect to " + inetAddress + " (port " + port + ")"; in connectDetail() local 178 detail += " after " + timeoutMs + "ms"; in connectDetail() 181 detail += ": " + cause.getMessage(); in connectDetail() 183 return detail; in connectDetail() 234 String detail = connectDetail(inetAddress, port, timeoutMs, cause); in isConnected() local 236 throw new SocketTimeoutException(detail, cause); in isConnected() 238 throw new ConnectException(detail, cause); in isConnected()
|
/libcore/luni/src/main/java/java/util/ |
D | ResourceBundle.java | 237 String detail = "Can't find resource for bundle '" + className + "', key '" + key + "'"; in missingResourceException() local 238 throw new MissingResourceException(detail, className, key); in missingResourceException()
|