All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.launchdarkly.sdk.json.SerializationException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.launchdarkly.sdk.json;

/**
 * General exception class for all errors in serializing or deserializing JSON.
 * 

* The SDK uses this class to avoid depending on exception types from the underlying JSON framework * that it uses. The underlying exception can be inspected with the {@link Exception#getCause()} * method, but application code should not rely on those details since they are subject to change. */ @SuppressWarnings("serial") public class SerializationException extends Exception { /** * Creates an instance. * @param cause the underlying exception */ public SerializationException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy