portal.lang
Class PortalException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byportal.lang.PortalException
All Implemented Interfaces:
java.io.Serializable

public class PortalException
extends java.lang.Exception

OpenVend's exception.

Version:
$Revision: 1.2 $
Author:
Thomas Weckert
See Also:
Serialized Form

Constructor Summary
PortalException()
          Creates a new portal exception with no detail message or root cause.
PortalException(java.lang.String message)
          Creates a new portal exception with a detail message.
PortalException(java.lang.String message, java.lang.Throwable rootCause)
          Creates a new portal exception with a detail message and root cause.
PortalException(java.lang.Throwable rootCause)
          Creates a new portal exception with a root cause.
 
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

PortalException

public PortalException()
Creates a new portal exception with no detail message or root cause.


PortalException

public PortalException(java.lang.Throwable rootCause)
Creates a new portal exception with a root cause.

Parameters:
rootCause - the root cause

PortalException

public PortalException(java.lang.String message)
Creates a new portal exception with a detail message.

Parameters:
message - the detail message

PortalException

public PortalException(java.lang.String message,
                       java.lang.Throwable rootCause)
Creates a new portal exception with a detail message and root cause.

Parameters:
message - the detail message
rootCause - the cause of the exception