Example #1
0
 public static IValue decode(byte[] data, IType hypType) throws DecodeException {
   try {
     return ser.decode(data, hypType);
   } catch (DecodeException e) {
     logDecodeException(e);
     throw e;
   }
 }
Example #2
0
 public static IValue incrementDecode(
     IEnsurableBitBuffer buffer, IType hypType, int[] resultValueLen) throws DecodeException {
   try {
     return ser.incrementDecode(buffer, hypType, resultValueLen);
   } catch (DecodeException e) {
     logDecodeException(e);
     throw e;
   }
 }
Example #3
0
 public static IValue decode(byte[] data, int offset, int len, IType hypType, int[] resultValueLen)
     throws DecodeException {
   try {
     return ser.decode(data, offset, len, hypType, resultValueLen);
   } catch (DecodeException e) {
     logDecodeException(e);
     throw e;
   }
 }