com.tensegrity.palojava
Class PaloException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.tensegrity.palojava.PaloException
All Implemented Interfaces:
java.io.Serializable

public class PaloException
extends java.lang.RuntimeException

PaloException is a runtime exception which signals that a communication exception between a palo client and palo server has occurred.

Version:
$ID:$
Author:
Stepan Rutz
See Also:
Serialized Form

Constructor Summary
PaloException()
           
PaloException(java.lang.Exception cause)
          Constructs an instance of PaloException with the specified Exception as the cause.
PaloException(java.lang.String msg)
          Constructs an instance of PaloException with the specified detailed message which describes this particular exception.
PaloException(java.lang.String msg, java.lang.Throwable cause)
          Constructs an instance of PaloException with the specified detailed message and a cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PaloException

public PaloException()

PaloException

public PaloException(java.lang.String msg)
Constructs an instance of PaloException with the specified detailed message which describes this particular exception.

Parameters:
msg - a detailed message

PaloException

public PaloException(java.lang.Exception cause)
Constructs an instance of PaloException with the specified Exception as the cause.

Parameters:
cause - the cause

PaloException

public PaloException(java.lang.String msg,
                     java.lang.Throwable cause)
Constructs an instance of PaloException with the specified detailed message and a cause.

Parameters:
msg - a detailed message
cause - the cause