类 DecodingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.core.codec.CodecException
cn.taketoday.core.codec.DecodingException
- 所有已实现的接口:
Serializable
Indicates an issue with decoding the input stream with a focus on content
related issues such as a parse failure. As opposed to more general I/O
errors, illegal state, or a
CodecException such as a configuration
issue that a Decoder may choose to raise.
For example in server web application, a DecodingException would
translate to a response with a 400 (bad input) status while
CodecException would translate to 500 (server error) status.
-
构造器概要
构造器构造器说明DecodingException(String msg) Create a new DecodingException.DecodingException(String msg, Throwable cause) Create a new DecodingException. -
方法概要
从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause
-
构造器详细资料
-
DecodingException
Create a new DecodingException.- 参数:
msg- the detail message
-
DecodingException
Create a new DecodingException.- 参数:
msg- the detail messagecause- root cause for the exception, if any
-