
net.stickycode.coercion.FailedToCoerceUsingValueOfMethodException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sticky-coercion Show documentation
Show all versions of sticky-coercion Show documentation
A simple coercion library for converting strings to objects
package net.stickycode.coercion;
import java.lang.reflect.InvocationTargetException;
import net.stickycode.exception.PermanentException;
@SuppressWarnings("serial")
public class FailedToCoerceUsingValueOfMethodException
extends PermanentException {
public FailedToCoerceUsingValueOfMethodException(InvocationTargetException e, Class> type, String value) {
super(e, "Failed to invoke value of method on '' with value ''", type.getName(), value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy