Polish Javadoc in @*ExceptionHandler

This commit is contained in:
Sam Brannen
2014-02-05 20:15:50 +01:00
parent 9fe9e27189
commit 67142dcb0a
2 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2013 the original author or authors. * Copyright 2002-2014 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
@@ -24,9 +24,9 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
/** /**
* Annotation for handling exceptions from message-handling methods within specific * Annotation for handling exceptions thrown from message-handling methods within a
* handler methods. * specific handler class.
* *
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
* @since 4.0 * @since 4.0
*/ */
@@ -36,8 +36,8 @@ import java.lang.annotation.Target;
public @interface MessageExceptionHandler { public @interface MessageExceptionHandler {
/** /**
* Exceptions handled by the annotation method. If empty, will default * Exceptions handled by the annotated method. If empty, will default to any
* to any exceptions listed in the method argument list. * exceptions listed in the method argument list.
*/ */
Class<? extends Throwable>[] value() default {}; Class<? extends Throwable>[] value() default {};

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2012 the original author or authors. * Copyright 2002-2014 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -119,8 +119,8 @@ import java.lang.annotation.Target;
public @interface ExceptionHandler { public @interface ExceptionHandler {
/** /**
* Exceptions handled by the annotation method. If empty, will default * Exceptions handled by the annotated method. If empty, will default to any
* to any exceptions listed in the method argument list. * exceptions listed in the method argument list.
*/ */
Class<? extends Throwable>[] value() default {}; Class<? extends Throwable>[] value() default {};