Package com.google.code.fqueue.exception

Examples of com.google.code.fqueue.exception.ConfigException


        setting.put(key, p.getProperty(key));
      }
      in.close();
    } catch (FileNotFoundException e) {
      log.error("config file not found at" + file.getAbsolutePath());
      throw new ConfigException("FileNotFoundException", e);
    } catch (IOException e) {
      log.error("config file not found at" + file.getAbsolutePath());
      throw new ConfigException("IOException", e);
    } catch (Exception e) {
      throw new ConfigException("Exception", e);
    }
  }
View Full Code Here


  public static void reload() {
    try {
      iniSetting();
    } catch (ConfigException e) {
      throw new ConfigException(e.getMessage(), e);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.code.fqueue.exception.ConfigException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.