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   
net.esper.eql.parse   
 

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(org.w3c.dom.Document document)
          Use the mappings and properties specified in the given XML document.
 Configuration Configuration.configure(java.io.File configFile)
          Use the configuration specified in the given application file.
 Configuration Configuration.configure(java.lang.String resource)
          Use the configuration specified in the given application resource.
 Configuration Configuration.configure(java.net.URL url)
          Use the configuration specified by the given URL.
 EPStatement EPAdministrator.createEQL(java.lang.String eqlStatement)
          Create a query language statement.
 EPStatement EPAdministrator.createPattern(java.lang.String onExpression)
          Create a event pattern statement for the expressing string passed.
protected  Configuration Configuration.doConfigure(org.w3c.dom.Document doc)
          Parse the W3C DOM document.
protected  Configuration Configuration.doConfigure(java.io.InputStream stream, java.lang.String resourceName)
          Use the configuration specified in the given input stream.
protected  java.io.InputStream Configuration.getConfigurationInputStream(java.lang.String resource)
          Get the configuration file as an InputStream.
 void EPRuntime.sendEvent(java.lang.Object object)
          Send an event to the event stream processing runtime.
 

Uses of EPException in net.esper.core
 

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

Methods in net.esper.core that throw EPException
 EPStatement EPAdministratorImpl.createEQL(java.lang.String eqlStatement)
           
 EPStatement EPAdministratorImpl.createPattern(java.lang.String expression)
           
 void EPRuntimeImpl.sendEvent(java.lang.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(java.lang.String expression, ParseRuleSelector parseRuleSelector)
          Parse expression using the rule the ParseRuleSelector instance supplies.