com.sap.security.api.umap.system
Class ExceptionInImplementationException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.sap.security.api.umap.system.ExceptionInImplementationException
- All Implemented Interfaces:
- java.io.Serializable
- public class ExceptionInImplementationException
- extends java.lang.Exception
This exception is thrown by different methods of
ISystemLandscapeWrapper when a request to the underlying system
landscape implementation fails.
The original exception thrown by the system landscape implementation can
be retrieved by calling getImplementationException().
- See Also:
- Serialized Form
|
Constructor Summary |
ExceptionInImplementationException()
Create an ExceptionInImplementationException without further
information. |
ExceptionInImplementationException(java.lang.String message)
Create an ExceptionInImplementationException with a message
string describing additional information about the original exception. |
ExceptionInImplementationException(java.lang.String message,
java.lang.Exception exception)
Create an ExceptionInImplementationException with a message
string and the original exception object. |
|
Method Summary |
java.lang.Exception |
getImplementationException()
Retrieve the original exception thrown by the underlying system landscape
implementation. |
void |
setImplementationException(java.lang.Exception exception)
Set the original exception thrown by the underlying system landscape
implementation. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ExceptionInImplementationException
public ExceptionInImplementationException()
- Create an
ExceptionInImplementationException without further
information.
ExceptionInImplementationException
public ExceptionInImplementationException(java.lang.String message)
- Create an
ExceptionInImplementationException with a message
string describing additional information about the original exception.
- Parameters:
message - The message text
ExceptionInImplementationException
public ExceptionInImplementationException(java.lang.String message,
java.lang.Exception exception)
- Create an
ExceptionInImplementationException with a message
string and the original exception object.
- Parameters:
message - The message textexception - The original exception
setImplementationException
public void setImplementationException(java.lang.Exception exception)
- Set the original exception thrown by the underlying system landscape
implementation.
- Parameters:
exception - The original exception
getImplementationException
public java.lang.Exception getImplementationException()
- Retrieve the original exception thrown by the underlying system landscape
implementation.
- Returns:
- The original exception (may be
null)