com.atlassian.jira.service.util.handler.MessageHandlerErrorCollector |
Known Indirect Subclasses
|
Clients of @PublicApi
can expect
that programs compiled against a given version will remain binary compatible with later versions of the
@PublicApi
as per each product's API policy as long as the client does not implement/extend
@PublicApi
interfaces or classes (refer to each product's API policy for the exact
guarantee---usually binary compatibility is guaranteed at least across minor versions).
@PublicApi
interfaces and classes are not designed to be implemented or extended by clients,
we may perform certain types of binary-incompatible changes to these classes and interfaces, but these will not
affect well-behaved clients that do not extend/implement these types (in general, only classes and interfaces
annotated with @PublicSpi
are safe to extend/implement).
Message handlers should report here what they are doing Depending on the context in which handlers are run (either normal production run as from a scheduled service or in a test mode - a dry run - from UI) this information can be transparently routed to appropriate place. Consider passing here translated strings (i18n), do not pass i18n keys.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Report an error.
| |||||||||||
Report an error.
| |||||||||||
Report valuable information for JIRA admin
| |||||||||||
Report valuable information for JIRA admin
| |||||||||||
Report a warning
| |||||||||||
Report a warning
|
Report an error.
error | a serious problem which usually makes further hanling of given message pointless |
---|
Report an error.
error | a serious problem which usually makes further hanling of given message pointless |
---|---|
e | associated throwable or null
|
Report valuable information for JIRA admin
info | information message (something expected, OK, normal) |
---|
Report valuable information for JIRA admin
info | information message (something expected, OK, normal) |
---|---|
e | associated throwable or null
|
Report a warning
warning | a warning, but nothing critical for the handler |
---|
Report a warning
warning | a warning, but nothing critical for the handler |
---|---|
e | associated throwable or null
|