Sha256: 2d33c98c17d64c15baafa4ff61a375f42cc9d03c310698b38e34d7a08b1db3b8
Contents?: true
Size: 396 Bytes
Versions: 92
Compression:
Stored size: 396 Bytes
Contents
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; } }
Version data entries
92 entries across 92 versions & 1 rubygems