Class UnknownConnectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.project.exception.UnknownConnectionException
-
- All Implemented Interfaces:
Serializable
public class UnknownConnectionException extends AppException
This type of exception is used when an invalid/unknown connection name is encountered.- Since:
- 8.3
- Author:
- Jon van Leuven
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownConnectionException(String connectionName)
Constructs an exception for an invalid connection name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getConnectionName()
This method returns the connection name that was unknown or invalid.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownConnectionException
public UnknownConnectionException(String connectionName)
Constructs an exception for an invalid connection name.- Parameters:
connectionName
- The connection name that was invalid or unknown.
-
-
Method Detail
-
getConnectionName
public String getConnectionName()
This method returns the connection name that was unknown or invalid.- Returns:
- the connection name that was unknown or invalid.
-
-