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

net.dongliu.cute.http.exception.JsonMarshallerNotFoundException Maven / Gradle / Ivy

The newest version!
package net.dongliu.cute.http.exception;

/**
 * Thrown when no valid JsonMarshaller implementation was found.
 */
public class JsonMarshallerNotFoundException extends RuntimeException {
    private static final long serialVersionUID = 6372693004564652648L;

    public JsonMarshallerNotFoundException() {
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy