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

com.github.arachnidium.model.abstractions.ModelObjectExceptionHandler Maven / Gradle / Ivy

There is a newer version: 0.9.9.9-BETA
Show newest version
package com.github.arachnidium.model.abstractions;

import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;

import net.sf.cglib.proxy.MethodInterceptor;
import net.sf.cglib.proxy.MethodProxy;

import com.github.arachnidium.model.interfaces.IModelObjectExceptionHandler;

/**
 * It is the abstraction which describes the process of 
 * implicit and automated exception handling
 * 
 * @see IModelObjectExceptionHandler
 * @see MethodProxy
 * @see MethodInterceptor
 */
public abstract class ModelObjectExceptionHandler implements
IModelObjectExceptionHandler {
	private List> throwableList = new ArrayList>();

	/**
	 * @param tClass is the class of exception which should be caught and
	 * handled 
	 */
	public ModelObjectExceptionHandler(Class tClass) {
		throwableList.add(tClass);
	}

	/**
	 * @param tClassList is the class list of exceptions which should be caught and
	 */
	public ModelObjectExceptionHandler(
			List> tClassList) {
		throwableList.addAll(tClassList);
	}

	@Override
	public abstract Object handleException(Object object,
			Method originalMethod, MethodProxy methodProxy, Object[] args,
			Throwable t) throws Throwable;

	/**
	 * 
	 * @param tClass is the class of exception which would be handled
	 * @return flag 
	 *    true if exception can be handled by this {@link ModelObjectExceptionHandler}
	 */
	public boolean isThrowableInList(Class tClass) {
		return throwableList.contains(tClass);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy