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

org.openl.rules.serialization.ObjectMapperConfigurationParsingException Maven / Gradle / Ivy

There is a newer version: 5.27.8
Show newest version
package org.openl.rules.serialization;

import org.openl.exception.OpenlNotCheckedException;
import org.openl.source.IOpenSourceCodeModule;
import org.openl.util.text.ILocation;

public class ObjectMapperConfigurationParsingException extends OpenlNotCheckedException {
    public ObjectMapperConfigurationParsingException() {
    }

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

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

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

    public ObjectMapperConfigurationParsingException(String message,
                                                     Throwable cause,
                                                     ILocation location,
                                                     IOpenSourceCodeModule sourceModule) {
        super(message, cause, location, sourceModule);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy