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

com.itranswarp.jsonstream.JsonSerializeException Maven / Gradle / Ivy

package com.itranswarp.jsonstream;

/**
 * Exception when serialize to JSON.
 * 
 * @author Michael Liao
 */
public class JsonSerializeException extends JsonException {

    /**
     * Construct a JsonSerializeException.
     * 
     * @param message The exception message.
     */
    public JsonSerializeException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy