Guest User

Untitled

a guest
Apr 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // temporary configuration file
  2. auto config = "../conf/gravitate-server.conf";
  3.  
  4. try {
  5.  
  6. // initialize server context
  7. serverContext = new ServerContext(config);
  8.  
  9. } catch (IOException e) {
  10.  
  11. // configuration file doesn't exist or isn't readable
  12. Stdout.format("Configuration file {} does not exist or is not readable",
  13. FileSystem.toAbsolute(new FilePath(config))).newline;
  14.  
  15. return;
  16.  
  17. }
Add Comment
Please, Sign In to add comment