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

com.bellotapps.utils.error_handler.ExceptionHandlerObject Maven / Gradle / Ivy

There is a newer version: 2.1.0-RELEASE
Show newest version
package com.bellotapps.utils.error_handler;

import java.lang.annotation.*;

/**
 * Indicates that an object is an
 * {@link com.bellotapps.utils.error_handler.ExceptionHandler}.
 * 

* Note that just using the annotation is not enough for being registered in the * {@link com.bellotapps.utils.error_handler.ErrorHandler}. * The annotated class must also implement the interface. * * @author Juan Marcos Bellini * @see ExceptionHandler * @see ErrorHandler * @see EnableErrorHandler */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface ExceptionHandlerObject { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy