Uses of Class
org.axonframework.util.AxonException

Packages that use AxonException
org.axonframework.commandhandling Classes that implement the concept of command handling using explicit command objects. 
org.axonframework.eventhandling Classes related to event handling and dispatching, such as Event Listeners and the Event Bus
org.axonframework.eventhandling.annotation Classes in support of the configuration of Event Handlers using annotations. 
org.axonframework.eventhandling.scheduling   
org.axonframework.eventsourcing Classes related to event sourcing. 
org.axonframework.eventstore Definitions and implementations of the Event store, the mechanism that can load event streams and append events to them. 
org.axonframework.repository Classes related to the repository interface and implementations. 
org.axonframework.saga   
org.axonframework.util Generic utility classes used throughout the Axon Framework. 
 

Uses of AxonException in org.axonframework.commandhandling
 

Subclasses of AxonException in org.axonframework.commandhandling
 class NoHandlerForCommandException
          Exception indicating that no suitable handler could be found for the given command.
 

Uses of AxonException in org.axonframework.eventhandling
 

Subclasses of AxonException in org.axonframework.eventhandling
 class UnsupportedHandlerMethodException
          Thrown when an EventHandler annotated method was found that does not conform to the rules that apply to those methods.
 

Uses of AxonException in org.axonframework.eventhandling.annotation
 

Subclasses of AxonException in org.axonframework.eventhandling.annotation
 class EventHandlerInvocationException
          EventHandlerInvocationException is a runtime exception that wraps an exception thrown by an invoked event handler.
 class TransactionMethodExecutionException
          Wrapper for exceptions that occurred while calling an @BeforeTransaction or @AfterTransaction annotated method.
 class UnsupportedPolicyException
          Exception indicating that a given EventSequencingPolicy could not be initialized.
 

Uses of AxonException in org.axonframework.eventhandling.scheduling
 

Subclasses of AxonException in org.axonframework.eventhandling.scheduling
 class SchedulingException
          Exception indicating a problem in the Event Scheduling mechanism.
 

Uses of AxonException in org.axonframework.eventsourcing
 

Subclasses of AxonException in org.axonframework.eventsourcing
 class AggregateDeletedException
          Special case of the AggregateNotFoundException that indicates that historic information of an aggregate was found, but the aggregate has been deleted.
 class IncompatibleAggregateException
          Exception indicating that an aggregate was not compatible with the requirements of the GenericEventSourcingRepository.
 

Uses of AxonException in org.axonframework.eventstore
 

Subclasses of AxonException in org.axonframework.eventstore
 class EventStoreException
          Indicates that the given events stream could not be stored or read due to an underlying exception.
 class EventStreamNotFoundException
          Exception indicating that the event store could not find an event stream for a given aggregate type and identifier.
 

Uses of AxonException in org.axonframework.repository
 

Subclasses of AxonException in org.axonframework.repository
 class AggregateNotFoundException
          Exception indicating that the an aggregate could not be found in the repository.
 class ConcurrencyException
          Exception indicating that concurrent access to a repository was detected.
 class ConflictingAggregateVersionException
          Exception indicating that the version of a loaded aggregate did not match the given expected version number.
 class ConflictingModificationException
          Root of a hierarchy of exceptions indicating the detection of conflicting concurrent modifications.
 

Uses of AxonException in org.axonframework.saga
 

Subclasses of AxonException in org.axonframework.saga
 class NoSuchSagaException
          Exception indicating that the specified Saga could not be found.
 class SagaStorageException
          Exception indicating that an error has occurred while storing a Saga.
 

Uses of AxonException in org.axonframework.util
 

Subclasses of AxonException in org.axonframework.util
 class AxonConfigurationException
          Exception indicating that a configuration error has been made in the Axon configuration.
 class AxonNonTransientException
          Exception indicating an error has been cause that cannot be resolved without intervention.
 class AxonTransientException
          Exception indicating an error occurred that might be resolved by retrying the operation that caused the exception.
 class SerializationException
          Indicates that an exception occurred while serializing or deserializing an object.
 



Copyright © 2011. All Rights Reserved.