File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
spring-core/src/main/java/org/springframework/core/codec Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 16
16
package org .springframework .core .codec ;
17
17
18
18
/**
19
- * Indicates an issue with decoding the input stream with the focus on indicating
20
- * a content issue such as a parse failure. As opposed to a more general I/O
19
+ * Indicates an issue with decoding the input stream with a focus on content
20
+ * related issues such as a parse failure. As opposed to more general I/O
21
21
* errors, illegal state, or a {@link CodecException} such as a configuration
22
22
* issue that a {@link Decoder} may choose to raise.
23
23
*
24
- * <p>For example in a web application, a server side {@code DecodingException}
25
- * would translate to a response with a 400 (bad input) status while
24
+ * <p>For example in server web application, a {@code DecodingException} would
25
+ * translate to a response with a 400 (bad input) status while
26
26
* {@code CodecException} would translate to 500 (server error) status.
27
27
*
28
28
* @author Rossen Stoyanchev
Original file line number Diff line number Diff line change 17
17
18
18
/**
19
19
* Indicates an issue with encoding the input Object stream with a focus on
20
- * indicating the Objects cannot be encoded . As opposed to a more general
21
- * {@link CodecException} such as a configuration issue that an {@link Encoder}
22
- * may also choose to raise.
20
+ * not being able to encode Objects . As opposed to a more general I/O errors
21
+ * or a {@link CodecException} such as a configuration issue that an
22
+ * {@link Encoder} may also choose to raise.
23
23
*
24
24
* @author Rossen Stoyanchev
25
25
* @since 5.0
You can’t perform that action at this time.
0 commit comments