Moved to Maven layout

This commit is contained in:
Rachel Walker
2012-11-29 11:46:51 -08:00
parent 3b6747cc50
commit a1bf666b54
94 changed files with 766 additions and 2121 deletions

View File

@@ -0,0 +1,22 @@
package com.raychatter.common.annotation;
import org.springframework.http.HttpStatus;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({
ElementType.ANNOTATION_TYPE,
ElementType.CONSTRUCTOR,
ElementType.FIELD,
ElementType.LOCAL_VARIABLE,
ElementType.METHOD,
ElementType.PARAMETER,
ElementType.TYPE})
public @interface ExceptionHandler {
HttpStatus httpStatus() default HttpStatus.OK;
String contentType();
}