com.goikosoft.reflection.NullObject 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 intenta ejecutar un método o acceder a un atributo de un objeto null.
*
* @author Dario
*
*/
public class NullObject extends ReflectionRuntimeException {
/**
*
*/
private static final long serialVersionUID = 6970954305065639057L;
public NullObject() {
super();
}
public NullObject(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public NullObject(String message, Throwable cause) {
super(message, cause);
}
public NullObject(String message) {
super(message);
}
public NullObject(Throwable cause) {
super(cause);
}
}