Sha256: 08145a9a87c905f348feccbe6d9211fe2e83f6f32163076cff757b6e6b49699d
Contents?: true
Size: 488 Bytes
Versions: 11
Compression:
Stored size: 488 Bytes
Contents
package com.gsamokovarov.skiptrace; class ThreadContextInterfaceException extends RuntimeException { private static final String MESSAGE_TEMPLATE = "Expected private field %s in ThreadContext is missing"; ThreadContextInterfaceException(String fieldName) { super(String.format(MESSAGE_TEMPLATE, fieldName)); } ThreadContextInterfaceException(String fieldName, Throwable cause) { super(String.format(MESSAGE_TEMPLATE, fieldName), cause); } }
Version data entries
11 entries across 11 versions & 4 rubygems