Package com.google.walkaround.slob.shared

Examples of com.google.walkaround.slob.shared.InvalidSnapshot


  public Slob create(String snapshot) throws InvalidSnapshot {
    try {
      return new WaveletObject(snapshot == null ? null
          : serializer.deserializeWavelet(IdHack.FAKE_WAVELET_NAME, snapshot));
    } catch (MessageException e) {
      throw new InvalidSnapshot(e);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.walkaround.slob.shared.InvalidSnapshot

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.