Checks that a numeric DClass is valid. @throws InvalidDClassException The class is out of range.
(int i)
| 65 | * @throws InvalidDClassException The class is out of range. |
| 66 | */ |
| 67 | public static void |
| 68 | check(int i) { |
| 69 | if (i < 0 || i > 0xFFFF) |
| 70 | throw new InvalidDClassException(i); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Converts a numeric DClass into a String |
no outgoing calls
no test coverage detected