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