コード例 #1
0
 /**
  * convert DeadlineException to MetaException
  *
  * @param e
  * @return
  */
 private static MetaException newMetaException(DeadlineException e) {
   MetaException metaException = new MetaException(e.getMessage());
   metaException.initCause(e);
   return metaException;
 }