public enum AmqpError extends Enum<AmqpError> implements org.mule.runtime.extension.api.error.ErrorTypeDefinition<AmqpError>
| Enum Constant and Description |
|---|
ACKNOWLEDGING
Generic error for acknowledging which could not be identified
|
BLOCKED_BROKER
An error generated by attempting to send a message where the broker is blocked due to the fact that it is running out of
resources.
|
CONSUMING
An error arised during consuming and could not be identified.
|
CREATION_NOT_ALLOWED
The queue or exchange does not exist and the disableCreationOfFallbackQueues or disableCreationOfFallbackExchanges is set.
|
DELIVER_TAG_NOT_FOUND
The deliver tag to acknowledged was not found by the broker.
|
EXCHANGE_DECLARATION
An exception raised during exchange declaration.
|
EXCHANGE_NOT_FOUND
The exchange defined does not exist and no fallbackExchangeDefinition exists.
|
ILLEGAL_BODY
An error generated by attempting to send a message with an illegal body (for example, a null body).
|
IO
A generic IO error
|
NO_CHANNEL_AVAILABLE
No channel available
|
PUBLISHING
An error aroused during publishing and could not be identified.
|
PUBLISHING_CONSUMING
Generic error for publishing-consuming which could not be identified
|
QUEUE_NOT_FOUND
The queue defined does not exist and no fallbackQueueDefinition is provided.
|
REJECTING
Generic error for rejecting which could not be identified
|
REQUEUE
A generic error on requeue process.
|
TIMEOUT
timeout to consume.
|
UNROUTABLE_MESSAGE
The message could not be routed either because it could not be immediately delivered or because there are no queues bound to
the exchange depending on the exchange configuration in the broker.
|
| Modifier and Type | Method and Description |
|---|---|
Optional<org.mule.runtime.extension.api.error.ErrorTypeDefinition<? extends Enum<?>>> |
getParent() |
static AmqpError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmqpError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpError CONSUMING
public static final AmqpError QUEUE_NOT_FOUND
public static final AmqpError CREATION_NOT_ALLOWED
public static final AmqpError TIMEOUT
public static final AmqpError PUBLISHING
public static final AmqpError EXCHANGE_NOT_FOUND
public static final AmqpError UNROUTABLE_MESSAGE
public static final AmqpError EXCHANGE_DECLARATION
public static final AmqpError IO
public static final AmqpError ILLEGAL_BODY
public static final AmqpError BLOCKED_BROKER
public static final AmqpError PUBLISHING_CONSUMING
public static final AmqpError ACKNOWLEDGING
public static final AmqpError DELIVER_TAG_NOT_FOUND
public static final AmqpError REJECTING
public static final AmqpError REQUEUE
public static final AmqpError NO_CHANNEL_AVAILABLE
public static AmqpError[] values()
for (AmqpError c : AmqpError.values()) System.out.println(c);
public static AmqpError valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 MuleSoft, Inc.. All rights reserved.