Uses of Class
net.esper.client.EPException

Packages that use EPException
net.esper.client This package defines the central Esper Client APIs. 
net.esper.core Implementation of client package interfaces, glue code 
net.esper.eql.parse Parsers and AST tree walkers and helper classes transforming AST into business objects 
net.esper.event This package defines the Esper Client event API. 
 

Uses of EPException in net.esper.client
 

Subclasses of EPException in net.esper.client
 class ConfigurationException
          Thrown to indicate a configuration problem.
 class EPStatementException
          This exception is thrown to indicate a problem in statement creation, such as syntax error or type checking problem etc.
 

Methods in net.esper.client that throw EPException
 Configuration Configuration.configure()
          Use the configuration specified in an application resource named esper.cfg.xml.
 Configuration Configuration.configure(Document document)
          Use the mappings and properties specified in the given XML document.
 Configuration Configuration.configure(File configFile)
          Use the configuration specified in the given application file.
 Configuration Configuration.configure(String resource)
          Use the configuration specified in the given application resource.
 Configuration Configuration.configure(URL url)
          Use the configuration specified by the given URL.
 EPStatement EPAdministrator.createEQL(String eqlStatement)
          Create a query language statement.
 EPStatement EPAdministrator.createPattern(String onExpression)
          Create a event pattern statement for the expressing string passed.
protected  InputStream Configuration.getConfigurationInputStream(String resource)
          Get the configuration file as an InputStream.
 void EPRuntime.sendEvent(Map map, String eventTypeAlias)
          Send a map containing event property values to the event stream processing runtime.
 void EPRuntime.sendEvent(Node node)
          Send an event represented by a DOM node to the event stream processing runtime.
 void EPRuntime.sendEvent(Object object)
          Send an event represented by a plain Java object to the event stream processing runtime.
 

Uses of EPException in net.esper.core
 

Methods in net.esper.core that throw EPException
 EPStatement EPAdministratorImpl.createEQL(String eqlStatement)
           
 EPStatement EPAdministratorImpl.createPattern(String expression)
           
 void EPRuntimeImpl.sendEvent(Map map, String eventTypeAlias)
           
 void EPRuntimeImpl.sendEvent(Node document)
           
 void EPRuntimeImpl.sendEvent(Object event)
           
 

Uses of EPException in net.esper.eql.parse
 

Subclasses of EPException in net.esper.eql.parse
 class EPStatementSyntaxException
          This exception is thrown to indicate a problem in statement creation.
 

Methods in net.esper.eql.parse that throw EPException
static antlr.collections.AST ParseHelper.parse(String expression, ParseRuleSelector parseRuleSelector)
          Parse expression using the rule the ParseRuleSelector instance supplies.
 

Uses of EPException in net.esper.event
 

Subclasses of EPException in net.esper.event
 class EventAdapterException
          This exception is thrown to indicate a problem resolving an event type by name.