Package net.sf.joafip.service

Examples of net.sf.joafip.service.FilePersistenceException


        break;
      case STATE_UNSTABLE:
        /* need file maintenance */
        throw exception;
      default:
        throw new FilePersistenceException("unknow state " + fileState,
            exception);
      }
    }
    return filePersistence;
  }
View Full Code Here


  public EnumFileAccessMode getFileAccessMode()
      throws FilePersistenceException {
    try {
      return storeProperties.getFileAccessMode();
    } catch (StoreException exception) {
      throw new FilePersistenceException(exception);
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.service.FilePersistenceException

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.