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

com.redhat.lightblue.client.response.LightblueParseException Maven / Gradle / Ivy

package com.redhat.lightblue.client.response;

import com.redhat.lightblue.client.LightblueException;

/**
 * Exception thrown when json2pojo conversion fails.
 *
 * @author dcrissman
 */
public class LightblueParseException extends LightblueException {

    private static final long serialVersionUID = -1221306072042538444L;

    public LightblueParseException(String message) {
        super(message);
    }

    public LightblueParseException(Throwable cause) {
        super(cause);
    }

    public LightblueParseException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy