com.sapportals.portal.prt.service.soap.exception
Class SOAPServiceException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.sapportals.portal.prt.runtime.PortalRuntimeException
                          |
                          +--com.sapportals.portal.prt.service.PortalServiceException
                                |
                                +--com.sapportals.portal.prt.service.ServiceException
                                      |
                                      +--com.sapportals.portal.prt.service.soap.exception.SOAPServiceException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
PRTFault

public class SOAPServiceException
extends ServiceException

Extension of ServiceException for SOAP Framework

See Also:
Serialized Form

Field Summary
protected  javax.xml.soap.SOAPMessage mm_msgFault
           
 
Constructor Summary
SOAPServiceException(java.lang.String s)
          Portal Service Exception constructor
SOAPServiceException(java.lang.String s, java.lang.Throwable e)
          Portal Service Exception constructor
SOAPServiceException(java.lang.Throwable e)
          Portal Service Exception constructor
 
Method Summary
 javax.xml.soap.SOAPMessage getMsgFault()
           
 java.lang.Throwable getOriginalException()
          Gets the original exception which can be null.
 void printStackTrace()
          prints this exception
 void printStackTrace(java.io.PrintStream s)
          Prints this Throwable and its backtrace to the specified print stream.
 void printStackTrace(java.io.PrintWriter s)
          Prints this Throwable and its backtrace to the specified print writer.
 
Methods inherited from class com.sapportals.portal.prt.runtime.PortalRuntimeException
getCause, getException, setCause, setException, toHTML, toText
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

mm_msgFault

protected javax.xml.soap.SOAPMessage mm_msgFault
Constructor Detail

SOAPServiceException

public SOAPServiceException(java.lang.String s)
Portal Service Exception constructor

SOAPServiceException

public SOAPServiceException(java.lang.String s,
                            java.lang.Throwable e)
Portal Service Exception constructor

SOAPServiceException

public SOAPServiceException(java.lang.Throwable e)
Portal Service Exception constructor
Method Detail

getOriginalException

public java.lang.Throwable getOriginalException()
Gets the original exception which can be null.
Returns:
the original exception

printStackTrace

public void printStackTrace()
prints this exception
Overrides:
printStackTrace in class PortalRuntimeException

printStackTrace

public void printStackTrace(java.io.PrintStream s)
Prints this Throwable and its backtrace to the specified print stream.
Overrides:
printStackTrace in class PortalRuntimeException
Following copied from class: com.sapportals.portal.prt.runtime.PortalRuntimeException
Parameters:
s - PrintWriter to use for output

printStackTrace

public void printStackTrace(java.io.PrintWriter s)
Prints this Throwable and its backtrace to the specified print writer.
Overrides:
printStackTrace in class PortalRuntimeException
Parameters:
s - PrintWriter to use for output

getMsgFault

public javax.xml.soap.SOAPMessage getMsgFault()