Complete documentation.
[jSite2.git] / src / net / pterodactylus / util / number / Hex.java
index f92a31a..de7929e 100644 (file)
@@ -68,6 +68,8 @@ public class Hex {
         *            The hexadecimal representation to decode
         * @return The decoded byte array
         * @see Integer#parseInt(java.lang.String, int)
+        * @throw NumberFormatException if the given string is not the hexadecimal
+        *        representation of a byte array
         */
        public static byte[] toByte(String hexString) {
                if ((hexString.length() & 0x01) == 0x01) {