com.goikosoft.reflection.NullArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reflection-utils Show documentation
Show all versions of reflection-utils Show documentation
Reflection utils. Simple envelope for reflection simplification
The newest version!
package com.goikosoft.reflection;
/**
* Lanzada cuando se pasa un nombre property o método nulo a un método
*
* @author Dario
*
*/
public class NullArgument extends ReflectionRuntimeException {
/**
*
*/
private static final long serialVersionUID = 6970954305065639057L;
public NullArgument() {
super();
}
public NullArgument(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public NullArgument(String message, Throwable cause) {
super(message, cause);
}
public NullArgument(String message) {
super(message);
}
public NullArgument(Throwable cause) {
super(cause);
}
}