Package ratpack.launch

Examples of ratpack.launch.NoBaseDirException


  }

  @Override
  public FileSystemBinding getBaseDir() {
    if (baseDir == null) {
      throw new NoBaseDirException("No base dir has been set");
    } else {
      return baseDir;
    }
  }
View Full Code Here

TOP

Related Classes of ratpack.launch.NoBaseDirException

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.