|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2008, 2022, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -64,17 +64,17 @@ private static void checkError(String message) throws Exception {
|
64 | 64 | }
|
65 | 65 |
|
66 | 66 |
|
67 |
| - // case of 6674166: this is very unlikely to happen, even if |
68 |
| - // both 6674166 and 6774170 aren't fixed. If it happens |
| 67 | + // case of 6774166: this is very unlikely to happen, even if |
| 68 | + // both 6774166 and 6774170 aren't fixed. If it happens |
69 | 69 | // however, it might indicate that neither defects are fixed.
|
70 | 70 |
|
71 | 71 | if (x instanceof NullPointerException) {
|
72 | 72 | throw new Exception(message + " - " +
|
73 |
| - "Congratulations! it seems you have triggered 6674166. " + |
74 |
| - "Neither 6674166 nor 6774170 seem to be fixed: " + x, x); |
| 73 | + "Congratulations! it seems you have triggered 6774166. " + |
| 74 | + "Neither 6774166 nor 6774170 seem to be fixed: " + x, x); |
75 | 75 | } else if (x instanceof IOException) {
|
76 | 76 | throw new Exception(message + " - " +
|
77 |
| - "Unexpected IOException. Maybe you triggered 6674166? " + |
| 77 | + "Unexpected IOException. Maybe you triggered 6774166? " + |
78 | 78 | x, x);
|
79 | 79 | } else if (x != null) {
|
80 | 80 | throw new Exception(message + " - " +
|
|
0 commit comments