/** @see pc.web.service.ClassInfoManager#removeClassInfo(java.lang.String) */
  public void removeClassInfo(Short pkey) throws Exception {
    try {
      if (log.isDebugEnabled()) {
        log.debug("removing classInfo: " + pkey);
      }

      dao.removeClassInfo(pkey);
    } catch (Exception e) {
      throw e;
    }
  }