Tabnine Logo
CallMethodRule.end
Code IndexAdd Tabnine to your IDE (free)

How to use
end
method
in
org.apache.commons.digester.CallMethodRule

Best Java code snippets using org.apache.commons.digester.CallMethodRule.end (Showing top 2 results out of 315)

origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-configuration

  /**
   * Calls the method. If the optional attribute was set, occurring
   * exceptions will be ignored.
   *
   * @throws Exception if an error occurs
   */
  @Override
  public void end() throws Exception
  {
    try
    {
      super.end();
    }
    catch (Exception ex)
    {
      if (optional)
      {
        log.warn("Could not create optional configuration!", ex);
      }
      else
      {
        throw ex;
      }
    }
  }
}
origin: org.apache.commons/org.motechproject.org.apache.commons.configuration

  /**
   * Calls the method. If the optional attribute was set, occurring
   * exceptions will be ignored.
   *
   * @throws Exception if an error occurs
   */
  @Override
  public void end() throws Exception
  {
    try
    {
      super.end();
    }
    catch (Exception ex)
    {
      if (optional)
      {
        log.warn("Could not create optional configuration!", ex);
      }
      else
      {
        throw ex;
      }
    }
  }
}
org.apache.commons.digesterCallMethodRuleend

Javadoc

Process the end of this element.

Popular methods of CallMethodRule

  • <init>
    Construct a "call method" rule with the specified method name.
  • begin
    Process the start of this element.
  • processMethodCallResult
    Subclasses may override this method to perform additional processing of the invoked method's result.

Popular in Java

  • Reading from database using SQL prepared statement
  • startActivity (Activity)
  • compareTo (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JFileChooser (javax.swing)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now