Package cleo.search

Examples of cleo.search.ElementSerializationException


  @Override
  public E deserialize(byte[] bytes) throws ElementSerializationException {
    try {
      return serializer.deserialize(bytes);
    } catch(SerializationException e) {
      throw new ElementSerializationException(e);
    }
  }
View Full Code Here


  @Override
  public byte[] serialize(E object) throws ElementSerializationException {
    try {
      return serializer.serialize(object);
    } catch(SerializationException e) {
      throw new ElementSerializationException(e);
    }
  }
View Full Code Here

TOP

Related Classes of cleo.search.ElementSerializationException

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.