com.shedhack.exception.controller.spring.config.EnableExceptionController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exception-controller-spring Show documentation
Show all versions of exception-controller-spring Show documentation
Global Exception Handler for Spring.
package com.shedhack.exception.controller.spring.config;
import org.springframework.context.annotation.Import;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* @author imamchishty
*/
@Target({java.lang.annotation.ElementType.TYPE})
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Documented
@Import(ExceptionControllerConfig.class)
public @interface EnableExceptionController {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy