congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
JPQLException.hasInternalExceptions
Code IndexAdd Tabnine to your IDE (free)

How to use
hasInternalExceptions
method
in
org.eclipse.persistence.exceptions.JPQLException

Best Java code snippets using org.eclipse.persistence.exceptions.JPQLException.hasInternalExceptions (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

  /**
   * PUBLIC
   * Print the stack trace for each error generated by the
   * parser. This method is intended to assist in debugging
   * problems in EJBQL
   */
  public void printFullStackTrace() {
    if (hasInternalExceptions()) {
      Iterator exceptions = getInternalExceptions().iterator();
      while (exceptions.hasNext()) {
        Throwable error = (Throwable)exceptions.next();
        error.printStackTrace();
      }
    }
  }
}
origin: com.haulmont.thirdparty/eclipselink

  /**
   * PUBLIC
   * Print the stack trace for each error generated by the
   * parser. This method is intended to assist in debugging
   * problems in EJBQL
   */
  public void printFullStackTrace() {
    if (hasInternalExceptions()) {
      Iterator exceptions = getInternalExceptions().iterator();
      while (exceptions.hasNext()) {
        Throwable error = (Throwable)exceptions.next();
        error.printStackTrace();
      }
    }
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  /**
   * PUBLIC
   * Print the stack trace for each error generated by the
   * parser. This method is intended to assist in debugging
   * problems in EJBQL
   */
  public void printFullStackTrace() {
    if (hasInternalExceptions()) {
      Iterator exceptions = getInternalExceptions().iterator();
      while (exceptions.hasNext()) {
        Throwable error = (Throwable)exceptions.next();
        error.printStackTrace();
      }
    }
  }
}
org.eclipse.persistence.exceptionsJPQLExceptionhasInternalExceptions

Javadoc

INTERNAL Does this exception have any internal errors?

Popular methods of JPQLException

  • <init>
    INTERNAL Only TopLink can throw and create these excpetions
  • aliasResolutionException
  • constructorClassNotFound
  • entityTypeNotFound
    JPQLException Entity Type Not Found Indicates that a type specified in a JPQL query string cannot b
  • entityTypeNotFound2
  • expectedOrderableOrderByItem
  • generalParsingException
    INTERNAL Create an exception to wrap a general parsing exception
  • getInternalExceptions
    INTERNAL Return the collection of internal Exceptions. Intialize if there are no exceptions
  • indexOnlyAllowedOnVariable
  • invalidCollectionMemberDecl
  • invalidCollectionNavigation
  • invalidEnumEqualExpression
  • invalidCollectionNavigation,
  • invalidEnumEqualExpression,
  • invalidEnumLiteral,
  • invalidExpressionArgument,
  • invalidFunctionArgument,
  • invalidMultipleUseOfSameParameter,
  • invalidNavigation,
  • invalidSetClauseNavigation,
  • invalidSetClauseTarget

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • findViewById (Activity)
  • getSystemService (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • 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