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

de.codecentric.reedelk.json.internal.exception.ObjectToJSONException Maven / Gradle / Ivy

The newest version!
package de.codecentric.reedelk.json.internal.exception;

import de.codecentric.reedelk.runtime.api.exception.PlatformException;

public class ObjectToJSONException extends PlatformException {

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

    public ObjectToJSONException(String message, Throwable exception) {
        super(message, exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy