Package org.bladerunnerjs.model.exception.modelupdate

Examples of org.bladerunnerjs.model.exception.modelupdate.NoSuchDirectoryException


  public void delete() throws ModelUpdateException
  {
    Logger logger = rootNode.logger(Node.class);
   
    try {
      if(!dirExists()) throw new NoSuchDirectoryException(this);
     
      try {
        FileUtils.deleteDirectory(dir);
        logger.debug(Messages.NODE_DELETED_LOG_MSG, getTypeName(), dir.getPath());
        notifyObservers(new NodeDeletedEvent(), this);
View Full Code Here

TOP

Related Classes of org.bladerunnerjs.model.exception.modelupdate.NoSuchDirectoryException

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.