Package com.intellij.openapi.vfs

Examples of com.intellij.openapi.vfs.InvalidVirtualFileAccessException


  }

  private static void ensureFileIsValid(final VirtualFile file) {
    int id = ((NewVirtualFile)file).getId();
    if (id <= 0) {
      throw new InvalidVirtualFileAccessException(file);
    }
  }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.vfs.InvalidVirtualFileAccessException

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.