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

net.stickycode.coercion.FailedToCoerceUsingValueOfMethodException Maven / Gradle / Ivy

There is a newer version: 6.6
Show newest version
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