public final enum

ConnectionExceptionCode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.mule.api.ConnectionExceptionCode

Class Overview

List of possible outcomes to a connection failure

Summary

Enum Values
ConnectionExceptionCode  CANNOT_REACH  The destination cannot be reached. 
ConnectionExceptionCode  CREDENTIALS_EXPIRED  The credentials used to authenticate has expired. 
ConnectionExceptionCode  INCORRECT_CREDENTIALS  The supplied credentials are not correct. 
ConnectionExceptionCode  UNKNOWN  Something else went wrong. 
ConnectionExceptionCode  UNKNOWN_HOST  The host cannot be resolved to an IP address  
Public Methods
static ConnectionExceptionCode valueOf(String name)
final static ConnectionExceptionCode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ConnectionExceptionCode CANNOT_REACH

The destination cannot be reached. Either the host is wrong or the port might be.

public static final ConnectionExceptionCode CREDENTIALS_EXPIRED

The credentials used to authenticate has expired.

public static final ConnectionExceptionCode INCORRECT_CREDENTIALS

The supplied credentials are not correct.

public static final ConnectionExceptionCode UNKNOWN

Something else went wrong.

public static final ConnectionExceptionCode UNKNOWN_HOST

The host cannot be resolved to an IP address

Public Methods

public static ConnectionExceptionCode valueOf (String name)

public static final ConnectionExceptionCode[] values ()