public static RuntimeException throwCME(String msg) {
    if (CommonUtils.isClient()) {
      return ClientHandler.throwCME(msg);
    }

    throw new RuntimeException(msg);
  }