Package it.eng.spagobi.commons.serializer

Examples of it.eng.spagobi.commons.serializer.SerializationException


        logger.debug("Deserializing string [" + (String)o + "]");
        try {
          responseJSON = new JSONObject( (String)o );
        } catch(Throwable t) {
          logger.error("Object to be deserialized must be string encoding a JSON object",t);
          throw new SerializationException("An error occurred while deserializing query: " + (String)o, t);
        }
      } else {
        Assert.assertUnreachable("Object to be deserialized must be of type string or of type JSONObject, not of type [" + o.getClass().getName() + "]");
      }
   
View Full Code Here

TOP

Related Classes of it.eng.spagobi.commons.serializer.SerializationException

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.