Package com.splunk.shuttl.archiver.model

Examples of com.splunk.shuttl.archiver.model.FileNotDirectoryException


      verifyThatFileCanBeCreatedAsADirectory(file);
  }

  private static void verifyThatFileIsADirectory(File file) {
    if (!file.isDirectory())
      throw new FileNotDirectoryException(
          "BucketMover's move location needs to be a directory. Was file: "
              + file);
  }
View Full Code Here

TOP

Related Classes of com.splunk.shuttl.archiver.model.FileNotDirectoryException

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.