(boolean b)
| 68 | } |
| 69 | |
| 70 | public static void check(boolean b) |
| 71 | { |
| 72 | class CheckException extends RuntimeException |
| 73 | { |
| 74 | public CheckException(String s) |
| 75 | { |
| 76 | super(s); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | if( !b ) |
| 81 | throw new CheckException("failed test"); |
| 82 | } |
| 83 | |
| 84 | public static void testTransformPointWithErrorCode() |
| 85 | { |
no outgoing calls