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

com.github.leeonky.dal.runtime.PropertyAccessException Maven / Gradle / Ivy

package com.github.leeonky.dal.runtime;

public class PropertyAccessException extends java.lang.RuntimeException {
    private final String message;

    public PropertyAccessException(String message, Exception cause) {
        super(cause);
        this.message = message;
    }

    public RuntimeException toDalError(String prefix, int position) {
        return new RuntimeException(prefix + message, position, getCause());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy