| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.jasig.portal.PortalException org.jasig.portal.GeneralRenderingException
GeneralRenderingException | public class GeneralRenderingException extends PortalException (Code) | | This exception would inform uPortal that a
general rendering problem has caused a channel
to throw an exception.
author: Peter Kharchenko version: $Revision: 35418 $ |
Constructor Summary | |
public | GeneralRenderingException() Instantiate a generic GeneralRenderingException. | public | GeneralRenderingException(Throwable cause) Instantiate a GeneralRenderingException,
with cause of the problem. | public | GeneralRenderingException(String msg) Instantiate a GeneralRenderingException,
with a message describing the nature of the problem. | public | GeneralRenderingException(String msg, Throwable cause) Instantiate a GeneralRenderingException with a message
and a Throwable representing the underlying cause of the problem. | public | GeneralRenderingException(String msg, boolean refresh, boolean reinstantiate) Instantiate a GeneralRenderingException with a message and
indicating whether channel refresh and channel reinstantiation are
appropriate responses to the problem. | public | GeneralRenderingException(String msg, Throwable cause, boolean refresh, boolean reinstantiate) Instantiate a GeneralRenderingException with a message and underlying
cause, indicating whether channel refresh and channel reinstantiation are
appropriate responses to the problem. |
GeneralRenderingException | public GeneralRenderingException()(Code) | | Instantiate a generic GeneralRenderingException.
Deprecated because it would be so much more helpful for you to instead
throw an exception with a message.
|
GeneralRenderingException | public GeneralRenderingException(Throwable cause)(Code) | | Instantiate a GeneralRenderingException,
with cause of the problem.
Parameters: cause - - cause of the problem |
GeneralRenderingException | public GeneralRenderingException(String msg)(Code) | | Instantiate a GeneralRenderingException,
with a message describing the nature of the problem.
Parameters: msg - - message explaining problem |
GeneralRenderingException | public GeneralRenderingException(String msg, Throwable cause)(Code) | | Instantiate a GeneralRenderingException with a message
and a Throwable representing the underlying cause of the problem.
Parameters: msg - - message explaining the problem Parameters: cause - - underlying Throwable |
GeneralRenderingException | public GeneralRenderingException(String msg, boolean refresh, boolean reinstantiate)(Code) | | Instantiate a GeneralRenderingException with a message and
indicating whether channel refresh and channel reinstantiation are
appropriate responses to the problem.
Parameters: msg - - message explaining the problem Parameters: refresh - - true if refresh is an appropriate response Parameters: reinstantiate - - true if reinstantiation is an appropriate response |
GeneralRenderingException | public GeneralRenderingException(String msg, Throwable cause, boolean refresh, boolean reinstantiate)(Code) | | Instantiate a GeneralRenderingException with a message and underlying
cause, indicating whether channel refresh and channel reinstantiation are
appropriate responses to the problem.
Parameters: msg - - message explaining the problem Parameters: cause - - underlying cause of problem Parameters: refresh - - true if refresh is appropriate response Parameters: reinstantiate - - true if reinstantiation is appropriate response |
|
|