Package com.saperion.ws.pool.exceptions
Class FactoryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.saperion.ws.pool.exceptions.FactoryException
-
- All Implemented Interfaces:
java.io.Serializable
public class FactoryException extends java.lang.Exception
This Exception will be thrown, if the pool factory has problems to create a SaClassicConnector instance or if internal Exceptions should be thrown.- Author:
- Daniel Manzke
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FactoryException()
Default constructor.FactoryException(java.lang.String message)
Constructor.FactoryException(java.lang.String message, java.lang.Throwable cause)
Constructor.FactoryException(java.lang.Throwable cause)
Constructor.
-
-
-
Constructor Detail
-
FactoryException
public FactoryException()
Default constructor.
-
FactoryException
public FactoryException(java.lang.String message)
Constructor.- Parameters:
message
- The exception's message.
-
FactoryException
public FactoryException(java.lang.Throwable cause)
Constructor.- Parameters:
cause
- The exception's cause.
-
FactoryException
public FactoryException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- The exception's message.cause
- The exception's cause.
-
-