| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.jasig.portal.PortalException org.jasig.portal.ResourceMissingException
ResourceMissingException | public class ResourceMissingException extends PortalException (Code) | | This exception would inform uPortal that a particular
resource required to complete channel operation is
missing.
author: Peter Kharchenko version: $Revision: 35418 $ $Date: 2005-03-07 13:09:07 -0700 (Mon, 07 Mar 2005) $ |
Constructor Summary | |
public | ResourceMissingException(String resourceURI, String resourceDescription, String msg) Instantiate a ResourceMissingException providing the URI of the missing resource,
a description of the missing resource, and a message. | public | ResourceMissingException(String resourceURI, String resourceDescription, Throwable cause) Instantiate a ResourceMissingException providing the URI of the missing resource,
a description of the missing resource, and a cause. | public | ResourceMissingException(String resourceURI, String resourceDescription, String msg, boolean refresh, boolean reinstantiate) Instantiate a ResourceMissingException providing a URI of the missing resource,
a description of the missing resource, a message, and indicating whether
channel refresh and channel reinstantiation are appropriate responses to the
error condition. | public | ResourceMissingException() Instantiate a bare MissingResourceException. | public | ResourceMissingException(String resourceUri, String description, String message, Throwable cause) Instantiate a ResourceMissingException providing the URI of the missing
resource, a description of the missing resource, a message, and an
underlying cause. |
ResourceMissingException | public ResourceMissingException(String resourceURI, String resourceDescription, String msg)(Code) | | Instantiate a ResourceMissingException providing the URI of the missing resource,
a description of the missing resource, and a message.
Parameters: resourceURI - URI of the missing resource Parameters: resourceDescription - description of the missing resource Parameters: msg - message about the error condition |
ResourceMissingException | public ResourceMissingException(String resourceURI, String resourceDescription, Throwable cause)(Code) | | Instantiate a ResourceMissingException providing the URI of the missing resource,
a description of the missing resource, and a cause.
Parameters: resourceURI - URI of the missing resource Parameters: resourceDescription - description of the missing resource Parameters: cause - the cause of the error condition |
ResourceMissingException | public ResourceMissingException(String resourceURI, String resourceDescription, String msg, boolean refresh, boolean reinstantiate)(Code) | | Instantiate a ResourceMissingException providing a URI of the missing resource,
a description of the missing resource, a message, and indicating whether
channel refresh and channel reinstantiation are appropriate responses to the
error condition.
Parameters: resourceURI - URI of the missing resource Parameters: resourceDescription - description of the missing resource Parameters: msg - message about the error condition Parameters: refresh - true if refreshing is an appropriate response Parameters: reinstantiate - true if reinstantiation is an appropriate response |
ResourceMissingException | public ResourceMissingException()(Code) | | Instantiate a bare MissingResourceException.
|
ResourceMissingException | public ResourceMissingException(String resourceUri, String description, String message, Throwable cause)(Code) | | Instantiate a ResourceMissingException providing the URI of the missing
resource, a description of the missing resource, a message, and an
underlying cause.
Parameters: resourceUri - URI of the missing resource Parameters: description - description of the missing resource Parameters: message - message about the error condition Parameters: cause - underlying cause of this problem |
getResourceDescription | public String getResourceDescription()(Code) | | Get a description of the missing resource.
a description of the missing resource, or null if not specified |
getResourceURI | public String getResourceURI()(Code) | | Get the URI of the missing resource.
the URI of the missing resource, or null if not specified. |
|
|