Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


com.tangosol.io.pof
Class PortableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.tangosol.io.pof.PortableException

All Implemented Interfaces:
PortableObject, java.io.Serializable
Direct Known Subclasses:
RequestIncompleteException, RequestPolicyException

public class PortableException
extends java.lang.RuntimeException
implements PortableObject

A PortableException is an exception that allows information about a remote exception or error to be serialized and deserialized to/from a POF stream.

Author:
jh,mf 2006.08.04

Field Summary
protected  java.lang.String[] m_asStackRemote
          A raw representation of the remote stack trace for this exception.
protected  java.lang.String m_sMessage
          The exception's message.
protected  java.lang.String m_sName
          The exception's name.

 

Constructor Summary
protected PortableException()
          Default constructor.
protected PortableException(java.lang.String sMessage)
          Constructs a PortableException with the specified detail message.
protected PortableException(java.lang.String sMessage, java.lang.Throwable e)
          Construct a PortableException from a Throwable object and an additional description.
protected PortableException(java.lang.Throwable e)
          Construct a PortableException from a Throwable object.

 

Method Summary
 java.lang.String[] getFullStackTrace()
          Return an array of Strings containing the full representation of the stack trace.
 java.lang.String getMessage()
          Return the detail message string of this PortableException.
 java.lang.String getName()
          Return the name of the exception.
 void printStackTrace(java.io.PrintStream stream)
          Print this PortableException and its stack trace to the specified stream.
 void printStackTrace(java.io.PrintWriter writer)
          Print this PortableException and its stack trace to the specified writer.
 void readExternal(PofReader in)
          Restore the contents of a user type instance by reading its state using the specified PofReader object.
 java.lang.String toString()
          Return a human-readable description for this exception.
 void writeExternal(PofWriter out)
          Save the contents of a POF user type instance by writing its state using the specified PofWriter object.

 

Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace

 

Field Detail

m_sName

protected java.lang.String m_sName
The exception's name.

m_sMessage

protected java.lang.String m_sMessage
The exception's message.

m_asStackRemote

protected java.lang.String[] m_asStackRemote
A raw representation of the remote stack trace for this exception.

Constructor Detail

PortableException

protected PortableException()
Default constructor.

PortableException

protected PortableException(java.lang.String sMessage)
Constructs a PortableException with the specified detail message.
Parameters:
sMessage - the String that contains a detailed message

PortableException

protected PortableException(java.lang.Throwable e)
Construct a PortableException from a Throwable object.
Parameters:
e - the Throwable object

PortableException

protected PortableException(java.lang.String sMessage,
                            java.lang.Throwable e)
Construct a PortableException from a Throwable object and an additional description.
Parameters:
sMessage - the additional description
e - the Throwable object

Method Detail

getName

public java.lang.String getName()
Return the name of the exception.
Returns:
the name of the exception

getFullStackTrace

public java.lang.String[] getFullStackTrace()
Return an array of Strings containing the full representation of the stack trace. The first element of the stack represents the exception's point of origin.
Returns:
the full stack trace

readExternal

public void readExternal(PofReader in)
                  throws java.io.IOException
Restore the contents of a user type instance by reading its state using the specified PofReader object.
Specified by:
readExternal in interface PortableObject
Parameters:
in - the PofReader from which to read the object's state
Throws:
java.io.IOException - if an I/O error occurs

writeExternal

public void writeExternal(PofWriter out)
                   throws java.io.IOException
Save the contents of a POF user type instance by writing its state using the specified PofWriter object.
Specified by:
writeExternal in interface PortableObject
Parameters:
out - the PofWriter to which to write the object's state
Throws:
java.io.IOException - if an I/O error occurs

getMessage

public java.lang.String getMessage()
Return the detail message string of this PortableException.
Overrides:
getMessage in class java.lang.Throwable
Returns:
the detail message string (may be null)

printStackTrace

public void printStackTrace(java.io.PrintStream stream)
Print this PortableException and its stack trace to the specified stream.
Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
stream - the PrintStream to use for the output

printStackTrace

public void printStackTrace(java.io.PrintWriter writer)
Print this PortableException and its stack trace to the specified writer.
Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
writer - the PrintWriter to use for the output

toString

public java.lang.String toString()
Return a human-readable description for this exception.
Overrides:
toString in class java.lang.Throwable
Returns:
a String description of the PortableException

Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.