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

org.embulk.config.UserDataExceptions Maven / Gradle / Ivy

package org.embulk.config;

public class UserDataExceptions {
    private UserDataExceptions() {}

    public static boolean isUserDataException(Throwable exception) {
        while (exception != null) {
            if (exception instanceof UserDataException) {
                return true;
            }
            exception = exception.getCause();
        }
        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy