Uses of Class
org.sape.carbon.core.exception.BaseException

Packages that use BaseException
org.sape.carbon.core.bootstrap   
org.sape.carbon.core.component.lifecycle   
org.sape.carbon.core.config   
org.sape.carbon.core.config.format   
org.sape.carbon.core.config.node   
org.sape.carbon.core.config.type   
org.sape.carbon.core.util.calendar   
org.sape.carbon.core.util.classify   
org.sape.carbon.core.util.enum   
org.sape.carbon.services.cache The Cache Service is designed to cache frequently used data in a refreshable, high performance, thread-safe fashion. 
org.sape.carbon.services.carbonmanagement   
org.sape.carbon.services.console This package contains a graphical user interface for the Carbon Component Model. 
org.sape.carbon.services.deployment The DeploymentService is designed to help manage differences in configurations between application deployments. 
org.sape.carbon.services.deployment.namelookup NameLookups are components that provide the deployment service with names that specify either an environment or instance. 
org.sape.carbon.services.ejb The EJB service facilitates Enterprise Java Bean lookup via a variety of factory methods. 
org.sape.carbon.services.email Contains the interfaces and implementations of an email sending service. 
org.sape.carbon.services.jmx.server   
org.sape.carbon.services.management.interceptor   
org.sape.carbon.services.scheduler   
org.sape.carbon.services.sql The Carbon SQL service comprises of SqlStatementFactory - The functional interface to the component DefaultStatementFactoryImpl - The default funtional implementation that defines the createPreparedStatement and createCallableStatement methods. 
org.sape.carbon.services.threadpool   
org.sape.carbon.services.uniqueid The Carbon Unique ID Service solves the problem of generating unique IDs for data that are independent of the data representation itself. 
 

Uses of BaseException in org.sape.carbon.core.bootstrap
 

Subclasses of BaseException in org.sape.carbon.core.bootstrap
 class BootStrapperStateEnum.BootStrapperStateEnumNotFoundException
           
 

Uses of BaseException in org.sape.carbon.core.component.lifecycle
 

Subclasses of BaseException in org.sape.carbon.core.component.lifecycle
 class LifecycleStateEnum.LifecycleStateEnumNotFoundException
           
 

Uses of BaseException in org.sape.carbon.core.config
 

Subclasses of BaseException in org.sape.carbon.core.config
 class ConfigurationException
          This abstract exception is the base exception for exceptions that occur within the Carbon Configuration Service.
 class ConfigurationStoreException
          This exception happens when their is a failure in the store or retrieval of the underlying data representing a configuration.
 

Uses of BaseException in org.sape.carbon.core.config.format
 

Subclasses of BaseException in org.sape.carbon.core.config.format
 class ConfigurationFormatException
           Exception thrown when there is a problem parsing a configuration file.
 

Uses of BaseException in org.sape.carbon.core.config.node
 

Subclasses of BaseException in org.sape.carbon.core.config.node
 class NodeCreationException
          Signifies there was a problem creating a Node.
 class NodeException
          Base exception for all exceptions in the node package.
 class NodeIOException
          Exception thrown when an Exception is encountered reading from or writing to a node.
 class NodeNotFoundException
          Thrown when a requested configuration Node is not found.
 class NodeRemovalException
          Thrown when a Node could not be removed.
 

Uses of BaseException in org.sape.carbon.core.config.type
 

Subclasses of BaseException in org.sape.carbon.core.config.type
 class ConfigurationTypeException
          This exception is thrown when there is a failure in parsing the string version of configuration data into its object representation.
 class TokenReplacementException
          Thrown from the TokenReplacer when it encounters an invalid token or the data required for substitution cannot be found.
 class TypeConversionException
          Thrown from a ConfigurationTypeHandler if it cannot convert a String to and object or vice versa Copyright 2002 Sapient
 class TypeHandlerNotFoundException
          Thrown when the Configuration Type Service cannot find a ConfigurationTypeHandler for the requested type.
 

Uses of BaseException in org.sape.carbon.core.util.calendar
 

Subclasses of BaseException in org.sape.carbon.core.util.calendar
static class DayOfWeekEnum.DayOfWeekEnumNotFoundException
          This class is a typesafe retriever exception for an enumeration
static class MonthEnum.MonthEnumNotFoundException
          This class is a typesafe retriever exception for an enumeration
 

Uses of BaseException in org.sape.carbon.core.util.classify
 

Subclasses of BaseException in org.sape.carbon.core.util.classify
 class SeverityEnum.SeverityEnumNotFoundException
          This class is a typesafe retriever excepection for an enumeration
 

Uses of BaseException in org.sape.carbon.core.util.enum
 

Subclasses of BaseException in org.sape.carbon.core.util.enum
 class EnumNotFoundException
          This exception is thrown when an Enum lookup via name or ordinal fails.
 

Uses of BaseException in org.sape.carbon.services.cache
 

Subclasses of BaseException in org.sape.carbon.services.cache
 class CacheException
          Abstract exception for cache package.
 class CacheLoadException
          A specific exception that will be thrown when a cache data loader could not retrive data from its data source.
 

Uses of BaseException in org.sape.carbon.services.carbonmanagement
 

Subclasses of BaseException in org.sape.carbon.services.carbonmanagement
 class CarbonManagementServiceException
          Abstract base class for all exceptions thrown within the CarbonManagementService
Copyright 2002 Sapient
 class ComponentNotFoundException
          Thrown when a component is not found in a call to loadComponent.
 class ConfigurationNotFoundException
          Thrown when a Configuration is not found in calls to viewConfigurationXML and refreshConfiguration.
 

Uses of BaseException in org.sape.carbon.services.console
 

Subclasses of BaseException in org.sape.carbon.services.console
static class OperationsImpactEnum.OperationsImpactEnumNotFoundException
          This class is a typesafe retriever excepection for an enumeration
 

Uses of BaseException in org.sape.carbon.services.deployment
 

Subclasses of BaseException in org.sape.carbon.services.deployment
 class DeploymentServiceException
          Levelized exception for DeploymentService
 

Uses of BaseException in org.sape.carbon.services.deployment.namelookup
 

Subclasses of BaseException in org.sape.carbon.services.deployment.namelookup
 class NameLookupException
          Thrown by NameLookup components when they have a problem looking up a name
 

Uses of BaseException in org.sape.carbon.services.ejb
 

Subclasses of BaseException in org.sape.carbon.services.ejb
 class HomeFactoryClassCastException
          A specific exception that will be thrown when the EJB service encounters a java.lang.ClassCastException.
 class HomeFactoryClassNotFoundException
          A specific exception that will be thrown when the EJB service encounters a java.lang.ClassNotFoundException.
 class HomeFactoryException
          This exception is the abstact, package-levelized exception for the EJB service.
 class HomeFactoryNamingException
          A specific exception that will be thrown when the EJB service encounters a javax.naming.NamingException.
 

Uses of BaseException in org.sape.carbon.services.email
 

Subclasses of BaseException in org.sape.carbon.services.email
 class MailException
           The base exception for Email service.
 class MailFailureException
           Thrown when the component is not able to send the mail.
 

Uses of BaseException in org.sape.carbon.services.jmx.server
 

Subclasses of BaseException in org.sape.carbon.services.jmx.server
 class MBeanServerException
          Abstract exception for MBean Server package
Copyright 2001 Sapient
 class MBeanServerRetreiveException
          A specific exception that will be thrown when a MBeanServerService could not retrive the MBeanServer.
 

Uses of BaseException in org.sape.carbon.services.management.interceptor
 

Subclasses of BaseException in org.sape.carbon.services.management.interceptor
 class MBeanOperationImpactEnum.MBeanOperationImpactEnumNotFoundException
          This class is a typesafe retriever exception for an enumeration
 

Uses of BaseException in org.sape.carbon.services.scheduler
 

Subclasses of BaseException in org.sape.carbon.services.scheduler
 class UnrecoverableTaskException
          This exception should be thrown by the runScheduledTask method of a Schedulable component if the task is in an irretrievable state and should be canceled.
 

Uses of BaseException in org.sape.carbon.services.sql
 

Subclasses of BaseException in org.sape.carbon.services.sql
static class ResultSetConcurrencyEnum.ResultSetConcurrencyEnumNotFoundException
          This class is a typesafe retriever excepection for an enumeration
static class ResultSetTypeEnum.ResultSetTypeEnumNotFoundException
          This class is a typesafe retriever excepection for an enumeration
 class StatementFactoryException
          This exception denotes a failure in the creation and preperation of a statement from a StatementFactory service.
 class StatementNotConfiguredException
          This exception denotes a failure to find the configuration for a named statement on the specified statement factory.
 

Uses of BaseException in org.sape.carbon.services.threadpool
 

Subclasses of BaseException in org.sape.carbon.services.threadpool
static class QueueFullPolicyEnum.QueueFullPolicyEnumNotFoundException
          This class is a typesafe retriever exception for an enumeration
static class TaskStatusEnum.TaskStatusEnumNotFoundException
          This class is a typesafe retriever exception for an enumeration
 

Uses of BaseException in org.sape.carbon.services.uniqueid
 

Subclasses of BaseException in org.sape.carbon.services.uniqueid
 class UniqueIDCreationException
          Exception thrown when a UniqueID cannot be created.
 class UniqueIDNotFoundException
          Thrown when a UniqueID cannot be found.
 class UniqueIDServiceException
          Exception that would be thrown if there is any error in the UniqueIDService.
 



Copyright 1999-2003 Sapient Corporation. All Rights Reserved.